打开这里:
输入:
/*
* Pre-include code will be placed here
* this code is located at global scope and should consist of
* declarations, preprocessor directives (e.g. #include) or procedures
*/
#include <vector>
using namespace std;
namespace ngw{
class TestCassStub{
public:
TestCassStub(){}
~TestCassStub(){}
vector<int> app_data()
{
return _data;
}
//private:
vector<int> _data;
};
}
using FdbSendMessageRequest = ngw::TestCassStub;
|