-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathbgcc.h
61 lines (57 loc) · 1.53 KB
/
bgcc.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
/***********************************************************************
* Copyright (c) 2012, Baidu Inc. All rights reserved.
*
* Licensed under the BSD License
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* license.txt
*********************************************************************/
#ifndef _BGCC2_BGCC_H_
#define _BGCC2_BGCC_H_
#include "base_processor.h"
#include "base_proxy.h"
#include "bgcc_error.h"
#include "bgcc_stdint.h"
#include "binary_protocol.h"
#include "byte_order.h"
#include "client_socket.h"
#include "conf_loader.h"
#include "conf_unit.h"
#include "connection_manager.h"
#include "cp_server.h"
#include "epoll_server.h"
#include "event_poll.h"
#include "exception.h"
#include "file_util.h"
#include "guard.h"
#include "server.h"
#include "log_device.h"
#include "log_device_manager.h"
#include "log.h"
#include "mempool.h"
#include "mutex.h"
#include "nb_data_buffer.h"
#include "peer_info.h"
#include "processor.h"
#include "protocol.h"
#include "runnable.h"
#include "sema.h"
#include "server_info.h"
#include "server_peer_socket.h"
#include "server_task.h"
#include "service_framework.h"
#include "service_manager.h"
#include "shareable.h"
#include "shared_pointer.h"
#include "socket_base.h"
#include "string_util.h"
#include "sync_vector.h"
#include "thread_group.h"
#include "thread.h"
#include "thread_manager.h"
#include "thread_pool.h"
#include "time_util.h"
#include "transport.h"
#include "transaction.h"
#endif // _BGCC2_BGCC_H_