]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/namespaces.hh
Standardize license text in all PDNS files
[thirdparty/pdns.git] / pdns / namespaces.hh
CommitLineData
12471842
PL
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 */
df9eba22
BH
22#ifndef PDNS_NAMESPACES_HH
23#define PDNS_NAMESPACES_HH
df9eba22 24#include <boost/tuple/tuple.hpp>
dd7da6cd 25
df9eba22
BH
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>
b1a17580 33#include <memory>
a3097340
BH
34#include <vector>
35#include <map>
36#include <set>
37#include <deque>
38#include <string>
39#include <iostream>
40
41using std::vector;
42using std::map;
43using std::pair;
44using std::make_pair;
45using std::runtime_error;
46using std::ostringstream;
47using std::set;
48using std::deque;
49using std::cerr;
50using std::cout;
51using std::clog;
52using std::endl;
53using std::ifstream;
54using std::ofstream;
55using std::ostream;
56using std::min; // these are a bit scary, everybody uses 'min'
57using std::max;
bab008e2 58using std::string;
df9eba22 59
df9eba22 60using boost::tie;
dd7da6cd 61using std::shared_ptr;
2fc8bd15 62using std::unique_ptr;
df9eba22
BH
63using boost::shared_array;
64using boost::scoped_array;
65using boost::tuple;
66using boost::format;
67using boost::make_tuple;
68using boost::optional;
69using boost::any_cast;
70using boost::any;
71using boost::function;
72using boost::trim;
6a363878 73using boost::trim_copy;
df9eba22
BH
74using boost::trim_left;
75using boost::trim_right;
76using boost::is_any_of;
df9eba22
BH
77using boost::trim_right_copy_if;
78using boost::equals;
79using boost::ends_with;
80using boost::iends_with;
81#endif