You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
485 B
24 lines
485 B
// 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_
|
|
|