/** * * @file * @author An Tao * @section LICENSE * * Copyright 2018, An Tao. All rights reserved. * Use of this source code is governed by a MIT license * that can be found in the License file. * * @section DESCRIPTION * */ #pragma once #include #include #include class CommandHandler:public virtual drogon::DrObjectBase { public: virtual void handleCommand(std::vector ¶meters)=0; virtual bool isTopCommand(){return false;} virtual std::string script(){return "";} virtual std::string detail(){return "";} virtual ~CommandHandler(){} };