Changeset 1974
- Timestamp:
- 02/05/11 18:39:43 (2 years ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/namespaces.hh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/namespaces.hh
r1469 r1974 11 11 #include <boost/format.hpp> 12 12 #include <boost/algorithm/string.hpp> 13 #include <vector> 14 #include <map> 15 #include <set> 16 #include <deque> 17 #include <string> 18 #include <iostream> 19 20 using std::vector; 21 using std::map; 22 using std::pair; 23 using std::make_pair; 24 using std::runtime_error; 25 using std::ostringstream; 26 using std::set; 27 using std::deque; 28 using std::cerr; 29 using std::cout; 30 using std::clog; 31 using std::endl; 32 using std::ifstream; 33 using std::ofstream; 34 using std::ostream; 35 using std::min; // these are a bit scary, everybody uses 'min' 36 using std::max; 37 38 namespace pdns { 39 typedef std::string string; 40 }; 41 42 typedef pdns::string string; 13 43 14 44 using boost::lexical_cast;