// Copyright 2018 Mobvoi Inc. All Rights Reserved. // Author: gfbai@mobvoi.com (Gaofeng Bai) #ifndef SDS_INTERFACE_SERVICE_H_ #define SDS_INTERFACE_SERVICE_H_ #define SDK_DLL_API __declspec(dllimport) //#include "sds/interface/parameter.h" namespace mobvoi { namespace sds { class SDK_DLL_API Service { public: virtual ~Service() {} virtual Parameter Invoke(const Parameter& params) = 0; }; } // namespace sds } // namespace mobvoi #endif // SDS_INTERFACE_SERVICE_H_