irccd  3.0.3
js.hpp
1 /*
2  * js.hpp -- libirccd-js 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_JS_HPP
20 #define IRCCD_JS_HPP
21 
27 #include "sysconfig.hpp"
28 
29 #include "js/api.hpp"
30 #include "js/chrono_api.hpp"
31 #include "js/directory_api.hpp"
32 #include "js/duk.hpp"
33 #include "js/file_api.hpp"
34 #include "js/irccd_api.hpp"
35 #include "js/logger_api.hpp"
36 #include "js/plugin.hpp"
37 #include "js/plugin_api.hpp"
38 #include "js/server_api.hpp"
39 #include "js/system_api.hpp"
40 #include "js/timer_api.hpp"
41 #include "js/unicode.hpp"
42 #include "js/unicode_api.hpp"
43 #include "js/util_api.hpp"
44 
45 namespace irccd {
46 
50 namespace js {
51 
52 } // !js
53 
54 } // !irccd
55 
56 #endif // !IRCCD_JS_HPP
Parent namespace.
Definition: acceptor.hpp:43