mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
26 lines
371 B
C++
26 lines
371 B
C++
/**
|
|
* Copyright (C) 2015-2018
|
|
* All rights reserved.
|
|
*
|
|
* AUTHOR(S)
|
|
* Zheng Shuxin
|
|
* E-mail: zhengshuxin@qiyi.com
|
|
*
|
|
* VERSION
|
|
* Fri 16 Jun 2017 01:59:13 PM CST
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct start_req_t;
|
|
struct start_res_t;
|
|
|
|
class service_start
|
|
{
|
|
public:
|
|
service_start(void) {}
|
|
~service_start(void) {}
|
|
|
|
bool run(const start_req_t& req, start_res_t& res);
|
|
};
|