inner_common.h 850 字节
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#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>

#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 已提交
19 20 21 22 23 24 25
#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 已提交
26 27 28
#include <error.h>

#include "Configure.h"
W
wangguibao 已提交
29 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