Index: src/libchcore/TPath.cpp =================================================================== diff -u -N -rd9527df01ee91b35d9a5fdccb80ded25a9c8265f -rb26ced3298e3e7e51d91f3ac70b56746786da83b --- src/libchcore/TPath.cpp (.../TPath.cpp) (revision d9527df01ee91b35d9a5fdccb80ded25a9c8265f) +++ src/libchcore/TPath.cpp (.../TPath.cpp) (revision b26ced3298e3e7e51d91f3ac70b56746786da83b) @@ -44,18 +44,6 @@ } // ============================================================================ - /// TSmartPath::TSmartPath - /// @date 2009/11/29 - /// - /// @brief Constructs path object from another path object. - /// @param[in] spPath - reference to another path object. - // ============================================================================ - TSmartPath::TSmartPath(const TSmartPath& spPath) : - m_strPath(spPath.m_strPath) - { - } - - // ============================================================================ /// TSmartPath::~TSmartPath /// @date 2009/11/29 /// @@ -64,7 +52,6 @@ // ============================================================================ TSmartPath::~TSmartPath() { - Clear(); } // ============================================================================ @@ -78,7 +65,6 @@ m_strPath.Clear(); } - TSmartPath TSmartPath::AppendCopy(const TSmartPath& pathToAppend, bool bEnsurePathSeparatorExists) const { TSmartPath pathNew(*this); @@ -122,25 +108,6 @@ } // ============================================================================ - /// TSmartPath::operator= - /// @date 2009/11/29 - /// - /// @brief Assigns a path from other path object. - /// @param[in] spPath - path object from which we want to get path. - /// @return Reference to this object. - // ============================================================================ - TSmartPath& TSmartPath::operator=(const TSmartPath& spPath) - { - if (this != &spPath) - { - Clear(); - m_strPath = spPath.m_strPath; - } - - return *this; - } - - // ============================================================================ /// TSmartPath::operator== /// @date 2009/11/29 /// @@ -932,14 +899,6 @@ return spPath; } - // ============================================================================ - /// PathFromWString - /// @date 2010/10/12 - /// - /// @brief Creates a path object from string. - /// @param[in] pszPath - string containing path. - /// @return New path object. - // ============================================================================ TSmartPath PathFromWString(const TString& strPath) { TSmartPath spPath;