irccd  3.0.3
core.hpp
1 /*
2  * core.hpp -- libirccd convenience header
3  *
4  * Copyright (c) 2013-2019 David Demelier <markand@malikania.fr>
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 #ifndef IRCCD_CORE_HPP
20 #define IRCCD_CORE_HPP
21 
27 #include "sysconfig.hpp"
28 
29 #include "acceptor.hpp"
30 #include "core.hpp"
31 #include "string_util.hpp"
32 #include "fs_util.hpp"
33 #include "system.hpp"
34 #include "json_util.hpp"
35 #include "stream.hpp"
36 #include "options.hpp"
37 #include "config.hpp"
38 #include "connector.hpp"
39 #include "ini.hpp"
40 #include "ini_util.hpp"
41 #include "xdg.hpp"
42 
46 namespace irccd {
47 
48 } // !irccd
49 
50 #endif // !IRCCD_CORE_HPP
Parent namespace.
Definition: acceptor.hpp:43