Example #1
0
File: main.cpp Project: jmfb/Com
int main()
{
	TestLong();
	TestString();
	TestWideString();
	TestBool();
	TestDate();
	TestVariant();
	TestInterface();
	TestSmartPointer();
	TestError();
	return 0;
}
bool C_coretestBase::TestLong(int callbackID, const Json::Value& parameters)
{
    Json::Value testLong_JSON;
    FetchObject(parameters, "testLong", testLong_JSON);

    int64 testLong;
    FetchLong(testLong_JSON, testLong);



    TestLong(callbackID, testLong);
    return true;
}