]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/namespaces.hh
Merge pull request #5523 from rubenk/fix-typos-in-logmessage
[thirdparty/pdns.git] / pdns / namespaces.hh
1 /*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #ifndef PDNS_NAMESPACES_HH
23 #define PDNS_NAMESPACES_HH
24 #include <boost/tuple/tuple.hpp>
25
26 #include <boost/shared_array.hpp>
27 #include <boost/scoped_array.hpp>
28 #include <boost/optional.hpp>
29 #include <boost/any.hpp>
30 #include <boost/function.hpp>
31 #include <boost/format.hpp>
32 #include <boost/algorithm/string.hpp>
33 #include <memory>
34 #include <vector>
35 #include <map>
36 #include <set>
37 #include <deque>
38 #include <string>
39 #include <iostream>
40
41 using std::vector;
42 using std::map;
43 using std::pair;
44 using std::make_pair;
45 using std::runtime_error;
46 using std::ostringstream;
47 using std::set;
48 using std::deque;
49 using std::cerr;
50 using std::cout;
51 using std::clog;
52 using std::endl;
53 using std::ifstream;
54 using std::ofstream;
55 using std::ostream;
56 using std::min; // these are a bit scary, everybody uses 'min'
57 using std::max;
58 using std::string;
59
60 using boost::tie;
61 using std::shared_ptr;
62 using std::unique_ptr;
63 using boost::shared_array;
64 using boost::scoped_array;
65 using boost::tuple;
66 using boost::format;
67 using boost::make_tuple;
68 using boost::optional;
69 using boost::any_cast;
70 using boost::any;
71 using boost::function;
72 using boost::trim;
73 using boost::trim_copy;
74 using boost::trim_left;
75 using boost::trim_right;
76 using boost::is_any_of;
77 using boost::trim_right_copy_if;
78 using boost::equals;
79 using boost::ends_with;
80 using boost::iends_with;
81 #endif