inner_common.h 847 字节
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11
#ifndef BAIDU_PADDLE_SERVING_PREDICTOR_INNER_COMMON_H
#define BAIDU_PADDLE_SERVING_PREDICTOR_INNER_COMMON_H

#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <pthread.h>
#include <strings.h>
#include <getopt.h>

W
wangguibao 已提交
12 13
#include <typeinfo>

W
wangguibao 已提交
14 15 16 17 18 19 20
#include <google/protobuf/text_format.h>
#include <boost/unordered_map.hpp>
#include <boost/function.hpp>
#include <boost/algorithm/string.hpp> // for boost::split&trim

#include <gflags/gflags.h>

W
wangguibao 已提交
21 22 23 24 25 26 27
#include <butil/logging.h>
#include <butil/time.h>
#include <butil/object_pool.h>
#include <brpc/channel.h>
#include <brpc/server.h>
#include <brpc/policy/giano_authenticator.h>
#include <bthread/bthread.h>
W
wangguibao 已提交
28 29
#include <error.h>

W
wangguibao 已提交
30 31
#include "configure.pb.h"
#include "configure_parser.h"
W
wangguibao 已提交
32 33 34 35 36 37

#include "common/utils.h"
#include "common/types.h"
#include "common/constant.h"

#endif