diff options
Diffstat (limited to 'tools/lldb-mi/MIUtilFileStd.h')
-rw-r--r-- | tools/lldb-mi/MIUtilFileStd.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/tools/lldb-mi/MIUtilFileStd.h b/tools/lldb-mi/MIUtilFileStd.h index 5a2234897768f..458f64a75df89 100644 --- a/tools/lldb-mi/MIUtilFileStd.h +++ b/tools/lldb-mi/MIUtilFileStd.h @@ -15,33 +15,30 @@ //++ ============================================================================ // Details: MI common code utility class. File handling. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014. -// Changes: None. //-- class CMIUtilFileStd : public CMICmnBase { // Static: public: - static char GetSlash(void); + static char GetSlash(); // Methods: public: - /* ctor */ CMIUtilFileStd(void); + /* ctor */ CMIUtilFileStd(); // bool CreateWrite(const CMIUtilString &vFileNamePath, bool &vwrbNewCreated); bool Write(const CMIUtilString &vData); bool Write(const char *vpData, const MIuint vCharCnt); - void Close(void); - bool IsOk(void) const; + void Close(); + bool IsOk() const; bool IsFileExist(const CMIUtilString &vFileNamePath) const; - const CMIUtilString &GetLineReturn(void) const; + const CMIUtilString &GetLineReturn() const; static CMIUtilString StripOffFileName(const CMIUtilString &vDirectoryPath); // Overridden: public: // From CMICmnBase - /* dtor */ ~CMIUtilFileStd(void) override; + /* dtor */ ~CMIUtilFileStd() override; // Attributes: private: |