/usr/include/Rivet/RivetBoost.hh is in librivet-dev 1.8.3-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | #ifndef RIVET_RIVETBOOST_HH
#define RIVET_RIVETBOOST_HH
#include "boost/smart_ptr.hpp"
#include "boost/lexical_cast.hpp"
#include "boost/assign.hpp"
#include "boost/foreach.hpp"
#define foreach BOOST_FOREACH
//#include <boost/random.hpp>
#include <boost/algorithm/string.hpp>
namespace Rivet {
// Smart pointers
using boost::shared_ptr;
// Clever casts
using boost::lexical_cast;
using boost::bad_lexical_cast;
// Clever assignment shortcuts
using namespace boost::assign;
// Strings
using namespace boost;
// Random numbers
// typedef boost::minstd_rand RngBase;
// typedef boost::uniform_real<> UniformRealDist;
// typedef boost::variate_generator<RngBase&, UniformRealDist> UniformRealRNG;
// typedef boost::uniform_int<> UniformIntDist;
// typedef boost::variate_generator<RngBase&, UniformIntDist> UniformIntRNG;
}
#endif
|