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
|
#ifndef PDNS_NAMESPACES_HH
#define PDNS_NAMESPACES_HH
#include <boost/lexical_cast.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/shared_array.hpp>
#include <boost/scoped_array.hpp>
#include <boost/optional.hpp>
#include <boost/any.hpp>
#include <boost/function.hpp>
#include <boost/format.hpp>
#include <boost/algorithm/string.hpp>
using boost::lexical_cast;
using boost::tie;
using boost::shared_ptr;
using boost::shared_array;
using boost::scoped_array;
using boost::tuple;
using boost::format;
using boost::make_tuple;
using boost::optional;
using boost::any_cast;
using boost::any;
using boost::function;
using boost::trim;
using boost::trim_left;
using boost::trim_right;
using boost::is_any_of;
using boost::trim_right_copy_if;
using boost::equals;
using boost::ends_with;
using boost::iends_with;
#endif
|