diff options
Diffstat (limited to 'lldb/tools/lldb-mi/MIUtilFileStd.h')
-rw-r--r-- | lldb/tools/lldb-mi/MIUtilFileStd.h | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/lldb/tools/lldb-mi/MIUtilFileStd.h b/lldb/tools/lldb-mi/MIUtilFileStd.h index 458f64a..2120cc2 100644 --- a/lldb/tools/lldb-mi/MIUtilFileStd.h +++ b/lldb/tools/lldb-mi/MIUtilFileStd.h @@ -10,40 +10,40 @@ #pragma once // In-house headers: -#include "MIUtilString.h" #include "MICmnBase.h" +#include "MIUtilString.h" -//++ ============================================================================ +//++ +//============================================================================ // Details: MI common code utility class. File handling. //-- -class CMIUtilFileStd : public CMICmnBase -{ - // Static: - public: - static char GetSlash(); +class CMIUtilFileStd : public CMICmnBase { + // Static: +public: + static char GetSlash(); - // Methods: - public: - /* ctor */ CMIUtilFileStd(); - // - bool CreateWrite(const CMIUtilString &vFileNamePath, bool &vwrbNewCreated); - bool Write(const CMIUtilString &vData); - bool Write(const char *vpData, const MIuint vCharCnt); - void Close(); - bool IsOk() const; - bool IsFileExist(const CMIUtilString &vFileNamePath) const; - const CMIUtilString &GetLineReturn() const; - static CMIUtilString StripOffFileName(const CMIUtilString &vDirectoryPath); + // Methods: +public: + /* ctor */ CMIUtilFileStd(); + // + bool CreateWrite(const CMIUtilString &vFileNamePath, bool &vwrbNewCreated); + bool Write(const CMIUtilString &vData); + bool Write(const char *vpData, const MIuint vCharCnt); + void Close(); + bool IsOk() const; + bool IsFileExist(const CMIUtilString &vFileNamePath) const; + const CMIUtilString &GetLineReturn() const; + static CMIUtilString StripOffFileName(const CMIUtilString &vDirectoryPath); - // Overridden: - public: - // From CMICmnBase - /* dtor */ ~CMIUtilFileStd() override; + // Overridden: +public: + // From CMICmnBase + /* dtor */ ~CMIUtilFileStd() override; - // Attributes: - private: - CMIUtilString m_fileNamePath; - FILE *m_pFileHandle; - CMIUtilString m_constCharNewLine; - bool m_bFileError; // True = have a file error ATM, false = all ok + // Attributes: +private: + CMIUtilString m_fileNamePath; + FILE *m_pFileHandle; + CMIUtilString m_constCharNewLine; + bool m_bFileError; // True = have a file error ATM, false = all ok }; |