-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibxsc.h
68 lines (60 loc) · 2.02 KB
/
libxsc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
Copyright 2019 www.dev5.cn, Inc. [email protected]
This file is part of X-MSG-IM.
X-MSG-IM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
X-MSG-IM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with X-MSG-IM. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef LIBXSC_H_
#define LIBXSC_H_
#define __LIBXSC_H__
#include "actor/Actor.h"
#include "actor/ActorBlocking.h"
#include "actor/ActorBlockingSingleThread.h"
#include "core/Xsc.h"
#include "core/XscCfg.h"
#include "core/XscChannel.h"
#include "core/XscMisc.h"
#include "core/XscMsgMgr.h"
#include "core/XscServer.h"
#include "core/XscTimer.h"
#include "core/XscTimerMgr.h"
#include "core/XscUsr.h"
#include "core/XscWorker.h"
#include "core/XscWorkerStat.h"
#include "http/XscHttpCfg.h"
#include "http/XscHttpChannel.h"
#include "http/XscHttpChannelStat.h"
#include "http/XscHttpLog.h"
#include "http/XscHttpServer.h"
#include "http/XscHttpWorker.h"
#include "rudp/XscRudpCfg.h"
#include "rudp/XscRudpChannel.h"
#include "rudp/XscRudpChannelStat.h"
#include "rudp/XscRudpLog.h"
#include "rudp/XscRudpServer.h"
#include "rudp/XscRudpWorker.h"
#include "tcp/XscTcpCfg.h"
#include "tcp/XscTcpChannel.h"
#include "tcp/XscTcpChannelStat.h"
#include "tcp/XscTcpLog.h"
#include "tcp/XscTcpServer.h"
#include "tcp/XscTcpWorker.h"
#include "udp/XscUdpCfg.h"
#include "udp/XscUdpChannel.h"
#include "udp/XscUdpLog.h"
#include "udp/XscUdpServer.h"
#include "udp/XscUdpWorker.h"
#include "ws/XscWebSocketCfg.h"
#include "ws/XscWebSocketChannel.h"
#include "ws/XscWebSocketLog.h"
#include "ws/XscWebSocketServer.h"
#include "ws/XscWebSocketWorker.h"
#endif