diff options
Diffstat (limited to 'tools/lldb-mi/MIUtilSystemWindows.h')
-rw-r--r-- | tools/lldb-mi/MIUtilSystemWindows.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/tools/lldb-mi/MIUtilSystemWindows.h b/tools/lldb-mi/MIUtilSystemWindows.h index c0d8b543a2f0..59e2de02df53 100644 --- a/tools/lldb-mi/MIUtilSystemWindows.h +++ b/tools/lldb-mi/MIUtilSystemWindows.h @@ -8,47 +8,47 @@ //===----------------------------------------------------------------------===// //++ -// File: MIUtilSystemWindows.h +// File: MIUtilSystemWindows.h // -// Overview: CMIUtilSystemWindows interface. +// Overview: CMIUtilSystemWindows 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 -#if defined( _MSC_VER ) +#if defined(_MSC_VER) // In-house headers: -#include "MIUtilString.h" +#include "MIUtilString.h" //++ ============================================================================ -// Details: MI common code utility class. Used to set or retrieve information -// about the current system or user. -// *** If you change, remove or add functionality it must be replicated -// *** for the all platforms supported; Windows, OSX, LINUX -// Gotchas: None. -// Authors: Illya Rudkin 29/01/2014. -// Changes: None. +// Details: MI common code utility class. Used to set or retrieve information +// about the current system or user. +// *** If you change, remove or add functionality it must be replicated +// *** for the all platforms supported; Windows, OSX, LINUX +// Gotchas: None. +// Authors: Illya Rudkin 29/01/2014. +// Changes: None. //-- class CMIUtilSystemWindows { -// Methods: -public: - /* ctor */ CMIUtilSystemWindows( void ); - - bool GetOSErrorMsg( const MIint vError, CMIUtilString & vrwErrorMsg ) const; - CMIUtilString GetOSLastError( void ) const; - bool GetExecutablesPath( CMIUtilString & vrwFileNamePath ) const; - bool GetLogFilesPath( CMIUtilString & vrwFileNamePath ) const; - -// Overrideable: -public: - // From CMICmnBase - /* dtor */ virtual ~CMIUtilSystemWindows( void ); + // Methods: + public: + /* ctor */ CMIUtilSystemWindows(void); + + bool GetOSErrorMsg(const MIint vError, CMIUtilString &vrwErrorMsg) const; + CMIUtilString GetOSLastError(void) const; + bool GetExecutablesPath(CMIUtilString &vrwFileNamePath) const; + bool GetLogFilesPath(CMIUtilString &vrwFileNamePath) const; + + // Overrideable: + public: + // From CMICmnBase + /* dtor */ virtual ~CMIUtilSystemWindows(void); }; typedef CMIUtilSystemWindows CMIUtilSystem; |