Index: src/libchcore/TBasePathData.h =================================================================== diff -u -N -rbe30619d750d8663d54cf02e7d4bde2ed2dd8d05 -rd88274a4bbfd4ef005d44c4d179b7596cb627486 --- src/libchcore/TBasePathData.h (.../TBasePathData.h) (revision be30619d750d8663d54cf02e7d4bde2ed2dd8d05) +++ src/libchcore/TBasePathData.h (.../TBasePathData.h) (revision d88274a4bbfd4ef005d44c4d179b7596cb627486) @@ -35,10 +35,15 @@ public: TBasePathData(); TBasePathData(const TBasePathData& rEntry); +/* - void SetMove(bool bValue) { m_bMove=bValue; } + void SetMove(bool bValue) { m_bMove = bValue; } bool GetMove() const { return m_bMove; } +*/ + bool GetSkipFurtherProcessing() const { return m_bSkipFurtherProcessing; } + void SetSkipFurtherProcessing(bool bSkipFurtherProcessing) { m_bSkipFurtherProcessing = bSkipFurtherProcessing; } + void SetDestinationPath(const TSmartPath& strPath); TSmartPath GetDestinationPath() const; bool IsDestinationPathSet() const { return !m_pathDst.IsEmpty(); } @@ -47,8 +52,8 @@ void Serialize(TWriteBinarySerializer& rSerializer, bool bData); private: - bool m_bMove; // specifies if we can use MoveFile (if will be moved) - + //bool m_bMove; // specifies if we can use MoveFile (if will be moved) + bool m_bSkipFurtherProcessing; // specifies if the path should be (or not) processed further TSmartPath m_pathDst; // dest path };