diff options
Diffstat (limited to 'lldb/tools/lldb-mi/MICmdMgr.h')
-rw-r--r-- | lldb/tools/lldb-mi/MICmdMgr.h | 64 |
1 files changed, 34 insertions, 30 deletions
diff --git a/lldb/tools/lldb-mi/MICmdMgr.h b/lldb/tools/lldb-mi/MICmdMgr.h index 31363594a9d..1e58b753294 100644 --- a/lldb/tools/lldb-mi/MICmdMgr.h +++ b/lldb/tools/lldb-mi/MICmdMgr.h @@ -13,9 +13,9 @@ #include <set> // In-house headers: -#include "MICmnBase.h" #include "MICmdBase.h" #include "MICmdMgrSetCmdDeleteCallback.h" +#include "MICmnBase.h" #include "MIUtilSingletonBase.h" // Declarations: @@ -24,43 +24,47 @@ class CMICmdFactory; class CMICmdInvoker; class CMICmdBase; -//++ ============================================================================ +//++ +//============================================================================ // Details: MI command manager. Oversees command operations, controls command // production and the running of commands. -// Command Invoker, Command Factory and Command Monitor while independent +// Command Invoker, Command Factory and Command Monitor while +// independent // units are overseen/managed by *this manager. // A singleton class. //-- -class CMICmdMgr : public CMICmnBase, public MI::ISingleton<CMICmdMgr> -{ - friend class MI::ISingleton<CMICmdMgr>; +class CMICmdMgr : public CMICmnBase, public MI::ISingleton<CMICmdMgr> { + friend class MI::ISingleton<CMICmdMgr>; - // Methods: - public: - bool Initialize() override; - bool Shutdown() override; + // Methods: +public: + bool Initialize() override; + bool Shutdown() override; - bool CmdInterpret(const CMIUtilString &vTextLine, bool &vwbYesValid, bool &vwbCmdNotInCmdFactor, SMICmdData &rwCmdData); - bool CmdExecute(const SMICmdData &vCmdData); - bool CmdDelete(SMICmdData vCmdData); - bool CmdRegisterForDeleteNotification(CMICmdMgrSetCmdDeleteCallback::ICallback &vObject); - bool CmdUnregisterForDeleteNotification(CMICmdMgrSetCmdDeleteCallback::ICallback &vObject); + bool CmdInterpret(const CMIUtilString &vTextLine, bool &vwbYesValid, + bool &vwbCmdNotInCmdFactor, SMICmdData &rwCmdData); + bool CmdExecute(const SMICmdData &vCmdData); + bool CmdDelete(SMICmdData vCmdData); + bool CmdRegisterForDeleteNotification( + CMICmdMgrSetCmdDeleteCallback::ICallback &vObject); + bool CmdUnregisterForDeleteNotification( + CMICmdMgrSetCmdDeleteCallback::ICallback &vObject); - // Methods: - private: - /* ctor */ CMICmdMgr(); - /* ctor */ CMICmdMgr(const CMICmdMgr &); - void operator=(const CMICmdMgr &); + // Methods: +private: + /* ctor */ CMICmdMgr(); + /* ctor */ CMICmdMgr(const CMICmdMgr &); + void operator=(const CMICmdMgr &); - // Overridden: - public: - // From CMICmnBase - /* dtor */ ~CMICmdMgr() override; + // Overridden: +public: + // From CMICmnBase + /* dtor */ ~CMICmdMgr() override; - // Attributes: - private: - CMICmdInterpreter &m_interpretor; - CMICmdFactory &m_factory; - CMICmdInvoker &m_invoker; - CMICmdMgrSetCmdDeleteCallback::CSetClients m_setCmdDeleteCallback; + // Attributes: +private: + CMICmdInterpreter &m_interpretor; + CMICmdFactory &m_factory; + CMICmdInvoker &m_invoker; + CMICmdMgrSetCmdDeleteCallback::CSetClients m_setCmdDeleteCallback; }; |