Index: src/libchcore/TFileErrorFilter.h =================================================================== diff -u -N -rf7314a3065ebf529a998aa0f98072049d06d192f -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3 --- src/libchcore/TFileErrorFilter.h (.../TFileErrorFilter.h) (revision f7314a3065ebf529a998aa0f98072049d06d192f) +++ src/libchcore/TFileErrorFilter.h (.../TFileErrorFilter.h) (revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3) @@ -24,19 +24,18 @@ #include "TString.h" #include "EFileError.h" -BEGIN_CHCORE_NAMESPACE - -class TFileErrorFilter +namespace chcore { -public: - TFileErrorFilter(); + class TFileErrorFilter + { + public: + TFileErrorFilter(); - EFeedbackResult Match(const TString& strSrcPath, const TString& strDstPath, EFileError eFileError, unsigned long ulError); + EFeedbackResult Match(const TString& strSrcPath, const TString& strDstPath, EFileError eFileError, unsigned long ulError); -private: - TString m_strSrcPathMask; -}; + private: + TString m_strSrcPathMask; + }; +} -END_CHCORE_NAMESPACE - #endif