]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/namespaces.hh
Merge pull request #7870 from omoerbeek/stubquery-fix-arg
[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 #include <boost/shared_array.hpp>
26 #include <boost/scoped_array.hpp>
27 #include <boost/optional.hpp>
28 #include <boost/any.hpp>
29 #include <boost/function.hpp>
30 #include <boost/format.hpp>
31 #include <boost/algorithm/string.hpp>
32 #include <memory>
33 #include <vector>
34 #include <map>
35 #include <set>
36 #include <deque>
37 #include <string>
38 #include <iostream>
39
40 using std::vector;
41 using std::map;
42 using std::pair;
43 using std::make_pair;
44 using std::runtime_error;
45 using std::ostringstream;
46 using std::set;
47 using std::deque;
48 using std::cerr;
49 using std::cout;
50 using std::clog;
51 using std::endl;
52 using std::ifstream;
53 using std::ofstream;
54 using std::ostream;
55 using std::min; // these are a bit scary, everybody uses 'min'
56 using std::max;
57 using std::string;
58
59 using boost::tie;
60 using std::shared_ptr;
61 using std::unique_ptr;
62 using boost::shared_array;
63 using boost::scoped_array;
64 using boost::tuple;
65 using boost::format;
66 using boost::make_tuple;
67 using boost::optional;
68 using boost::any_cast;
69 using boost::any;
70 using boost::function;
71 using boost::trim;
72 using boost::trim_copy;
73 using boost::trim_left;
74 using boost::trim_right;
75 using boost::is_any_of;
76 using boost::trim_right_copy_if;
77 using boost::equals;
78 using boost::ends_with;
79 using boost::iends_with;
80
81 #endif