mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
24 lines
706 B
C++
24 lines
706 B
C++
/*
|
|
* PROJECT: ReactOS Automatic Testing Utility
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Class implementing the interface to the "testman" Web Service
|
|
* COPYRIGHT: Copyright 2009-2015 Colin Finck ([email protected])
|
|
*/
|
|
|
|
class CWebService
|
|
{
|
|
private:
|
|
PCHAR m_TestID;
|
|
|
|
virtual PCHAR DoRequest(const char* Hostname, INTERNET_PORT Port, const char* ServerFile, const string& InputData) = 0;
|
|
void GetTestID(const char* TestType);
|
|
PCHAR GetSuiteID(const char* TestType, CTestInfo* TestInfo);
|
|
|
|
public:
|
|
CWebService();
|
|
virtual ~CWebService();
|
|
|
|
void Finish(const char* TestType);
|
|
void Submit(const char* TestType, CTestInfo* TestInfo);
|
|
};
|