]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/namespaces.hh
Merge pull request #14020 from omoerbeek/rec-compiling-rust-dcos
[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 */
e8c59f2d 22#pragma once
dc593046 23
dc593046
OM
24#include <boost/optional.hpp>
25#include <iostream>
a3097340 26#include <map>
dc593046 27#include <memory>
a3097340 28#include <set>
a3097340 29#include <string>
dc593046 30#include <vector>
a3097340 31
a3097340 32using std::cerr;
a3097340 33using std::clog;
dc593046 34using std::cout;
a3097340
BH
35using std::endl;
36using std::ifstream;
dd742383 37using std::make_unique;
dc593046
OM
38using std::map;
39using std::max;
40using std::min;
a3097340
BH
41using std::ofstream;
42using std::ostream;
dc593046
OM
43using std::ostringstream;
44using std::pair;
45using std::runtime_error;
46using std::set;
dd7da6cd 47using std::shared_ptr;
dc593046 48using std::string;
2fc8bd15 49using std::unique_ptr;
dc593046 50using std::vector;