aboutsummaryrefslogtreecommitdiff
path: root/tools/lldb-mi/MICmnBase.h
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-02-06 21:38:51 +0000
committerEd Maste <emaste@FreeBSD.org>2015-02-06 21:38:51 +0000
commit205afe679855a4ce8149cdaa94d3f0868ce796dc (patch)
tree09bc83f73246ee3c7a779605cd0122093d2a8a19 /tools/lldb-mi/MICmnBase.h
parent0cac4ca3916ac24ab6139d03cbfd18db9e715bfe (diff)
downloadsrc-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/MICmnBase.h')
-rw-r--r--tools/lldb-mi/MICmnBase.h66
1 files changed, 33 insertions, 33 deletions
diff --git a/tools/lldb-mi/MICmnBase.h b/tools/lldb-mi/MICmnBase.h
index db7338c5581f..01fdab4dd14f 100644
--- a/tools/lldb-mi/MICmnBase.h
+++ b/tools/lldb-mi/MICmnBase.h
@@ -8,53 +8,53 @@
//===----------------------------------------------------------------------===//
//++
-// File: MICmnBase.h
+// File: MICmnBase.h
//
-// Overview: CMICmnBase interface.
+// Overview: CMICmnBase interface.
//
-// 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
// In-house headers:
-#include "MIDataTypes.h"
+#include "MIDataTypes.h"
#include "MIUtilString.h"
// Declarations:
class CMICmnLog;
//++ ============================================================================
-// Details: MI common code implementation base class.
-// Gotchas: None.
-// Authors: Illya Rudkin 28/01/2014.
-// Changes: None.
+// Details: MI common code implementation base class.
+// Gotchas: None.
+// Authors: Illya Rudkin 28/01/2014.
+// Changes: None.
//--
class CMICmnBase
{
-// Methods:
-public:
- /* ctor */ CMICmnBase( void );
-
- bool HaveErrorDescription( void ) const;
- const CMIUtilString & GetErrorDescription( void ) const;
- void SetErrorDescription( const CMIUtilString & vrTxt ) const;
- void SetErrorDescriptionn( const CMIUtilString & vrFormat, ... ) const;
- void SetErrorDescriptionNoLog( const CMIUtilString & vrTxt ) const;
- void ClrErrorDescription( void ) const;
-
-// Overrideable:
-public:
- /* dtor */ virtual ~CMICmnBase( void );
-
-// Attributes:
-protected:
- mutable CMIUtilString m_strMILastErrorDescription;
- bool m_bInitialized; // True = yes successfully initialized, false = no yet or failed
- CMICmnLog * m_pLog; // Allow all derived classes to use the logger
- MIint m_clientUsageRefCnt; // Count of client using *this object so not shutdown() object to early
-}; \ No newline at end of file
+ // Methods:
+ public:
+ /* ctor */ CMICmnBase(void);
+
+ bool HaveErrorDescription(void) const;
+ const CMIUtilString &GetErrorDescription(void) const;
+ void SetErrorDescription(const CMIUtilString &vrTxt) const;
+ void SetErrorDescriptionn(const CMIUtilString vFormat, ...) const;
+ void SetErrorDescriptionNoLog(const CMIUtilString &vrTxt) const;
+ void ClrErrorDescription(void) const;
+
+ // Overrideable:
+ public:
+ /* dtor */ virtual ~CMICmnBase(void);
+
+ // Attributes:
+ protected:
+ mutable CMIUtilString m_strMILastErrorDescription;
+ bool m_bInitialized; // True = yes successfully initialized, false = no yet or failed
+ CMICmnLog *m_pLog; // Allow all derived classes to use the logger
+ MIint m_clientUsageRefCnt; // Count of client using *this object so not shutdown() object to early
+};