00001 #ifndef RIVET_RIVETBOOST_HH
00002 #define RIVET_RIVETBOOST_HH
00003
00004 #include "boost/smart_ptr.hpp"
00005 #include "boost/lexical_cast.hpp"
00006 #include "boost/assign.hpp"
00007
00008 #include "boost/foreach.hpp"
00009 #define foreach BOOST_FOREACH
00010
00011 #include <boost/random.hpp>
00012 #include <boost/algorithm/string.hpp>
00013
00014 namespace Rivet {
00015
00016
00017
00018 using boost::shared_ptr;
00019
00020
00021 using boost::lexical_cast;
00022
00023
00024 using namespace boost::assign;
00025
00026
00027 using namespace boost;
00028
00029
00030 typedef boost::minstd_rand RngBase;
00031 typedef boost::uniform_real<> UniformRealDist;
00032 typedef boost::variate_generator<RngBase&, UniformRealDist> UniformRealRNG;
00033 typedef boost::uniform_int<> UniformIntDist;
00034 typedef boost::variate_generator<RngBase&, UniformIntDist> UniformIntRNG;
00035
00036
00037 }
00038
00039 #endif