Index: src/libchcore/TSubTaskContext.h =================================================================== diff -u -N -rd9527df01ee91b35d9a5fdccb80ded25a9c8265f -rb26ced3298e3e7e51d91f3ac70b56746786da83b --- src/libchcore/TSubTaskContext.h (.../TSubTaskContext.h) (revision d9527df01ee91b35d9a5fdccb80ded25a9c8265f) +++ src/libchcore/TSubTaskContext.h (.../TSubTaskContext.h) (revision b26ced3298e3e7e51d91f3ac70b56746786da83b) @@ -28,7 +28,7 @@ #include "TBasePathData.h" #include "TFileInfoArray.h" #include "IFilesystem.h" -#include "..\liblogger\TLogFileData.h" +#include "../liblogger/TLogFileData.h" namespace chcore { @@ -47,8 +47,11 @@ const TFileFiltersArray& rFilters, TTaskConfigTracker& rCfgTracker, const logger::TLogFileDataPtr& spLogFileData, TWorkerThreadController& rThreadController, const IFilesystemPtr& spFilesystem); + TSubTaskContext(const TSubTaskContext& rSrc) = delete; ~TSubTaskContext(); + TSubTaskContext& operator=(const TSubTaskContext& rSrc) = delete; + TConfig& GetConfig(); const TConfig& GetConfig() const; @@ -75,10 +78,6 @@ IFilesystemPtr GetLocalFilesystem() const; private: - TSubTaskContext(const TSubTaskContext& rSrc); - TSubTaskContext& operator=(const TSubTaskContext& rSrc); - - private: TConfig& m_rConfig; EOperationType m_eOperationType;