acl/app/master/daemon/manage/action/service_start.h
2017-06-16 17:00:49 +08:00

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);
};