diff options
author | Ed Maste <emaste@FreeBSD.org> | 2015-02-06 21:38:51 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2015-02-06 21:38:51 +0000 |
commit | 205afe679855a4ce8149cdaa94d3f0868ce796dc (patch) | |
tree | 09bc83f73246ee3c7a779605cd0122093d2a8a19 /tools/lldb-mi/MICmdCmdSupportInfo.h | |
parent | 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe (diff) | |
download | src-205afe679855a4ce8149cdaa94d3f0868ce796dc.tar.gz src-205afe679855a4ce8149cdaa94d3f0868ce796dc.zip |
Import LLDB as of upstream SVN r225923 (git 2b588ecd)vendor/lldb/lldb-r225923
This corresponds with the branchpoint for the 3.6 release.
A number of files not required for the FreeBSD build have been removed.
Sponsored by: DARPA, AFRL
Notes
Notes:
svn path=/vendor/lldb/dist/; revision=278332
svn path=/vendor/lldb/lldb-r225923/; revision=278333; tag=vendor/lldb/lldb-r225923
Diffstat (limited to 'tools/lldb-mi/MICmdCmdSupportInfo.h')
-rw-r--r-- | tools/lldb-mi/MICmdCmdSupportInfo.h | 79 |
1 files changed, 39 insertions, 40 deletions
diff --git a/tools/lldb-mi/MICmdCmdSupportInfo.h b/tools/lldb-mi/MICmdCmdSupportInfo.h index 2633e99ce10e..b643d4af1aa4 100644 --- a/tools/lldb-mi/MICmdCmdSupportInfo.h +++ b/tools/lldb-mi/MICmdCmdSupportInfo.h @@ -8,24 +8,24 @@ //===----------------------------------------------------------------------===// //++ -// File: MICmdCmdSupportInfo.h +// File: MICmdCmdSupportInfo.h // -// Overview: CMICmdCmdSupportInfoMiCmdQuery interface. +// Overview: CMICmdCmdSupportInfoMiCmdQuery interface. // -// To implement new MI commands derive a new command class from the command base -// class. To enable the new command for interpretation add the new command class -// to the command factory. The files of relevance are: -// MICmdCommands.cpp -// MICmdBase.h / .cpp -// MICmdCmd.h / .cpp -// For an introduction to adding a new command see CMICmdCmdSupportInfoMiCmdQuery -// command class as an example. +// To implement new MI commands derive a new command class from the command base +// class. To enable the new command for interpretation add the new command class +// to the command factory. The files of relevance are: +// MICmdCommands.cpp +// MICmdBase.h / .cpp +// MICmdCmd.h / .cpp +// For an introduction to adding a new command see CMICmdCmdSupportInfoMiCmdQuery +// command class as an example. // -// Environment: Compilers: Visual C++ 12. -// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1 -// Libraries: See MIReadmetxt. +// Environment: Compilers: Visual C++ 12. +// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1 +// Libraries: See MIReadmetxt. // -// Copyright: None. +// Copyright: None. //-- #pragma once @@ -34,36 +34,35 @@ #include "MICmdBase.h" //++ ============================================================================ -// Details: MI command class. MI commands derived from the command base class. -// *this class implements MI command "info-gdb-mi-command". -// This command does not follow the MI documentation exactly. -// Gotchas: None. -// Authors: Illya Rudkin 06/05/2014. -// Changes: None. +// Details: MI command class. MI commands derived from the command base class. +// *this class implements MI command "info-gdb-mi-command". +// This command does not follow the MI documentation exactly. +// Gotchas: None. +// Authors: Illya Rudkin 06/05/2014. +// Changes: None. //-- class CMICmdCmdSupportInfoMiCmdQuery : public CMICmdBase { -// Statics: -public: - // Required by the CMICmdFactory when registering *this command - static CMICmdBase * CreateSelf( void ); + // Statics: + public: + // Required by the CMICmdFactory when registering *this command + static CMICmdBase *CreateSelf(void); -// Methods: -public: - /* ctor */ CMICmdCmdSupportInfoMiCmdQuery( void ); + // Methods: + public: + /* ctor */ CMICmdCmdSupportInfoMiCmdQuery(void); -// Overridden: -public: - // From CMICmdInvoker::ICmd - virtual bool Execute( void ); - virtual bool Acknowledge( void ); - virtual bool ParseArgs( void ); - // From CMICmnBase - /* dtor */ virtual ~CMICmdCmdSupportInfoMiCmdQuery( void ); + // Overridden: + public: + // From CMICmdInvoker::ICmd + virtual bool Execute(void); + virtual bool Acknowledge(void); + virtual bool ParseArgs(void); + // From CMICmnBase + /* dtor */ virtual ~CMICmdCmdSupportInfoMiCmdQuery(void); -// Attributes: -private: - bool m_bCmdFound; // True = query for the command in command factory found, false = not found not recognised - const CMIUtilString m_constStrArgCmdName; + // Attributes: + private: + bool m_bCmdFound; // True = query for the command in command factory found, false = not found not recognised + const CMIUtilString m_constStrArgCmdName; }; - |