Пример #1
0
Файл: main.cpp Проект: jmfb/Com
int main()
{
	TestLong();
	TestString();
	TestWideString();
	TestBool();
	TestDate();
	TestVariant();
	TestInterface();
	TestSmartPointer();
	TestError();
	return 0;
}
Пример #2
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;
}