⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stafmiscservice.h

📁 Software Testing Automation Framework (STAF)的开发代码
💻 H
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF)                              *//* (C) Copyright IBM Corp. 2001                                              *//*                                                                           *//* This software is licensed under the Common Public License (CPL) V1.0.     *//*****************************************************************************/#ifndef STAF_MiscService#define STAF_MiscService#include "STAFService.h"#include "STAFCommandParser.h"#if defined(STAF_OS_TYPE_WIN32) && defined(_DEBUG)#include <crtdbg.h>#endifclass STAFMiscService : public STAFService{public:    STAFMiscService();    virtual STAFServiceResult acceptRequest(                              const STAFServiceRequest &requestInfo);    virtual STAFString info(unsigned int raw = 0) const;    virtual ~STAFMiscService();private:    // Don't allow copy construction or assignment    STAFMiscService(const STAFMiscService &);    STAFMiscService &operator=(const STAFMiscService &);    STAFServiceResult handleVersion(const STAFServiceRequest &requestInfo);    STAFServiceResult handleWhoAmI(const STAFServiceRequest &requestInfo);    STAFServiceResult handleWhoAreYou(const STAFServiceRequest &requestInfo);    STAFServiceResult handleThread(const STAFServiceRequest &requestInfo);    STAFServiceResult handleList(const STAFServiceRequest &requestInfo);    STAFServiceResult handleQuery(const STAFServiceRequest &requestInfo);    STAFServiceResult handlePurge(const STAFServiceRequest &requestInfo);    STAFServiceResult handleSet(const STAFServiceRequest &requestInfo);    STAFServiceResult handleTest(const STAFServiceRequest &requestInfo);    STAFServiceResult handleDebug(const STAFServiceRequest &requestInfo);    STAFServiceResult handleHelp(const STAFServiceRequest &requestInfo);    STAFCommandParser fThreadParser;    STAFCommandParser fListParser;    STAFCommandParser fQueryParser;    STAFCommandParser fPurgeParser;    STAFCommandParser fSetParser;    STAFCommandParser fTestParser;    STAFCommandParser fDebugParser;    STAFMapClassDefinitionPtr fLogRecordClass;    STAFObjectPtr fMapOfLists;    STAFObjectPtr fListOfMaps;    STAFMapClassDefinitionPtr fInterfaceClass;    STAFMapClassDefinitionPtr fSettingsClass;    STAFMapClassDefinitionPtr fListCacheClass;    STAFMapClassDefinitionPtr fPurgeCacheClass;    STAFMapClassDefinitionPtr fWhoamiClass;    STAFMapClassDefinitionPtr fWhoAreYouClass;    STAFMapClassDefinitionPtr fThreadClass;        #if defined(STAF_OS_TYPE_WIN32) && defined(_DEBUG)    _CrtMemState fFromMemState;    #endif};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -