mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 15:51:49 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
42
modules/rostests/rosautotest/CConfiguration.h
Normal file
42
modules/rostests/rosautotest/CConfiguration.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Automatic Testing Utility
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: Class for managing all the configuration parameters
|
||||
* COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
|
||||
*/
|
||||
|
||||
class CConfiguration
|
||||
{
|
||||
private:
|
||||
bool m_CrashRecovery;
|
||||
bool m_IsInteractive;
|
||||
bool m_IsReactOS;
|
||||
bool m_PrintToConsole;
|
||||
bool m_Shutdown;
|
||||
bool m_Submit;
|
||||
string m_Comment;
|
||||
wstring m_Module;
|
||||
string m_Test;
|
||||
|
||||
string m_AuthenticationRequestString;
|
||||
string m_SystemInfoRequestString;
|
||||
|
||||
public:
|
||||
CConfiguration();
|
||||
void ParseParameters(int argc, wchar_t* argv[]);
|
||||
void GetSystemInformation();
|
||||
void GetConfigurationFromFile();
|
||||
|
||||
bool DoCrashRecovery() const { return m_CrashRecovery; }
|
||||
bool DoPrint() const { return m_PrintToConsole; }
|
||||
bool DoShutdown() const { return m_Shutdown; }
|
||||
bool DoSubmit() const { return m_Submit; }
|
||||
bool IsInteractive() const { return m_IsInteractive; }
|
||||
bool IsReactOS() const { return m_IsReactOS; }
|
||||
const string& GetComment() const { return m_Comment; }
|
||||
const wstring& GetModule() const { return m_Module; }
|
||||
const string& GetTest() const { return m_Test; }
|
||||
|
||||
const string& GetAuthenticationRequestString() const { return m_AuthenticationRequestString; }
|
||||
const string& GetSystemInfoRequestString() const { return m_SystemInfoRequestString; }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue