Index: ch.vc140.sln =================================================================== diff -u -r4a481bbe77043e0bda2435c6d62a02700b3e46c5 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- ch.vc140.sln (.../ch.vc140.sln) (revision 4a481bbe77043e0bda2435c6d62a02700b3e46c5) +++ ch.vc140.sln (.../ch.vc140.sln) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -32,6 +32,8 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gmock", "ext\googletest\gmock.vc140.vcxproj", "{D98F2D98-2352-4303-93EE-A5430C4E98AB}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblogger", "src\liblogger\liblogger.vc140.vcxproj", "{DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -156,6 +158,22 @@ {D98F2D98-2352-4303-93EE-A5430C4E98AB}.Testing Release|Win32.Build.0 = Testing Release|Win32 {D98F2D98-2352-4303-93EE-A5430C4E98AB}.Testing Release|x64.ActiveCfg = Testing Release|x64 {D98F2D98-2352-4303-93EE-A5430C4E98AB}.Testing Release|x64.Build.0 = Testing Release|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Debug|Win32.ActiveCfg = Debug|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Debug|Win32.Build.0 = Debug|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Debug|x64.ActiveCfg = Debug|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Debug|x64.Build.0 = Debug|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Release|Win32.ActiveCfg = Release|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Release|Win32.Build.0 = Release|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Release|x64.ActiveCfg = Release|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Release|x64.Build.0 = Release|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Debug|Win32.ActiveCfg = Testing Debug|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Debug|Win32.Build.0 = Testing Debug|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Debug|x64.ActiveCfg = Testing Debug|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Debug|x64.Build.0 = Testing Debug|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Release|Win32.ActiveCfg = Testing Release|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Release|Win32.Build.0 = Testing Release|Win32 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Release|x64.ActiveCfg = Testing Release|x64 + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D}.Testing Release|x64.Build.0 = Testing Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE Index: src/ch/AsyncHttpFile.cpp =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/ch/AsyncHttpFile.cpp (.../AsyncHttpFile.cpp) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/ch/AsyncHttpFile.cpp (.../AsyncHttpFile.cpp) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -18,7 +18,7 @@ // ============================================================================ #include "stdafx.h" #include "AsyncHttpFile.h" -#include "../common/TLogger.h" +#include "../liblogger/TLogger.h" #include "ch.h" // timeout used with waiting for events (avoiding hangs) Index: src/ch/UpdaterDlg.cpp =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/ch/UpdaterDlg.cpp (.../UpdaterDlg.cpp) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/ch/UpdaterDlg.cpp (.../UpdaterDlg.cpp) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -12,7 +12,7 @@ #include "WindowsVersion.h" #include "resource.h" #include "CfgProperties.h" -#include "../common/TLogger.h" +#include "../liblogger/TLogger.h" #define UPDATER_TIMER 639 Index: src/ch/ch.cpp =================================================================== diff -u -rb8b97b70743c49fcc2aee0db4cb7118db5e26dab -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/ch/ch.cpp (.../ch.cpp) (revision b8b97b70743c49fcc2aee0db4cb7118db5e26dab) +++ src/ch/ch.cpp (.../ch.cpp) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -43,7 +43,7 @@ #include "TMsgBox.h" #include "../libchcore/TWin32ErrorFormatter.h" #include "resource.h" -#include "../common/TLogger.h" +#include "../liblogger/TLogger.h" #ifdef _DEBUG #define new DEBUG_NEW Index: src/ch/ch.h =================================================================== diff -u -rb8b97b70743c49fcc2aee0db4cb7118db5e26dab -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/ch/ch.h (.../ch.h) (revision b8b97b70743c49fcc2aee0db4cb7118db5e26dab) +++ src/ch/ch.h (.../ch.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -24,10 +24,10 @@ #include "../libchcore/TConfig.h" #include "TShellExtensionClient.h" #include "TCommandLineParser.h" -#include "../common/TLogger.h" -#include "../common/TLoggerInitializer.h" +#include "../liblogger/TLogger.h" +#include "../liblogger/TLoggerInitializer.h" #include "../libchcore/TCoreEngine.h" -#include "../common/TLoggerFactory.h" +#include "../liblogger/TLoggerFactory.h" class CCopyHandlerApp : public CWinApp, public CAppHelper { Index: src/ch/ch.vc140.vcxproj =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/ch/ch.vc140.vcxproj (.../ch.vc140.vcxproj) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/ch/ch.vc140.vcxproj (.../ch.vc140.vcxproj) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -510,16 +510,6 @@ - - - - - - - - - - @@ -772,25 +762,6 @@ NotUsing NotUsing - - 4512;4714 - 4512;4714 - 4512;4714 - 4512;4714 - 4512;4714 - 4512;4714 - 4512;4714 - 4512;4714 - - - - - - - - - - @@ -2011,6 +1982,9 @@ {dd1f3242-7ee4-4f41-8b8d-d833300c445f} + + {df9957d4-3d95-4ac3-ad3f-dcbea058f79d} + Index: src/ch/ch.vc140.vcxproj.filters =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/ch/ch.vc140.vcxproj.filters (.../ch.vc140.vcxproj.filters) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/ch/ch.vc140.vcxproj.filters (.../ch.vc140.vcxproj.filters) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -63,9 +63,6 @@ {2e2638f2-07f6-4472-bd2d-32151a7ef9ce} - - {475febbf-e9ec-4293-a92f-d31c3f8c8072} - @@ -248,36 +245,6 @@ Source Files\Core - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - @@ -451,36 +418,6 @@ Source Files\Core - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - Index: src/libchcore/TCoreEngine.h =================================================================== diff -u -rb8b97b70743c49fcc2aee0db4cb7118db5e26dab -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TCoreEngine.h (.../TCoreEngine.h) (revision b8b97b70743c49fcc2aee0db4cb7118db5e26dab) +++ src/libchcore/TCoreEngine.h (.../TCoreEngine.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -20,7 +20,7 @@ #define __TCOREENGINE_H__ #include "libchcore.h" -#include "../common/TLoggerInitializer.h" +#include "../liblogger/TLoggerInitializer.h" namespace chcore { Index: src/libchcore/TFilesystemFeedbackWrapper.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TFilesystemFeedbackWrapper.h (.../TFilesystemFeedbackWrapper.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TFilesystemFeedbackWrapper.h (.../TFilesystemFeedbackWrapper.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -21,8 +21,8 @@ #include "IFilesystem.h" #include "TSubTaskBase.h" -#include "../common/TLogger.h" -#include "../common/TLoggerFactory.h" +#include "../liblogger/TLogger.h" +#include "../liblogger/TLoggerFactory.h" namespace chcore { Index: src/libchcore/TFilesystemFileFeedbackWrapper.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TFilesystemFileFeedbackWrapper.h (.../TFilesystemFileFeedbackWrapper.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TFilesystemFileFeedbackWrapper.h (.../TFilesystemFileFeedbackWrapper.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -23,8 +23,8 @@ #include "TSubTaskBase.h" #include "IFeedbackHandler.h" #include "IFilesystem.h" -#include "../common/TLogger.h" -#include "../common/TLoggerFactory.h" +#include "../liblogger/TLogger.h" +#include "../liblogger/TLoggerFactory.h" namespace chcore { Index: src/libchcore/TPath.h =================================================================== diff -u -rf866db90e4b058a4f2e13cc6cf076d1e0bf2d956 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TPath.h (.../TPath.h) (revision f866db90e4b058a4f2e13cc6cf076d1e0bf2d956) +++ src/libchcore/TPath.h (.../TPath.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -30,7 +30,7 @@ class LIBCHCORE_API TSmartPath { protected: - BOOST_STATIC_CONSTANT(bool, DefaultCaseSensitivity = false); + static const bool DefaultCaseSensitivity = false; public: // Construction/destruction Index: src/libchcore/TStringArray.h =================================================================== diff -u -rcb4e9d4b60d62b25ae2cf556c0642601af56c787 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TStringArray.h (.../TStringArray.h) (revision cb4e9d4b60d62b25ae2cf556c0642601af56c787) +++ src/libchcore/TStringArray.h (.../TStringArray.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -25,6 +25,7 @@ #include "TString.h" #include "libchcore.h" +#include namespace chcore { Index: src/libchcore/TSubTaskContext.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TSubTaskContext.h (.../TSubTaskContext.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TSubTaskContext.h (.../TSubTaskContext.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -29,7 +29,7 @@ #include "TBasePathData.h" #include "TFileInfoArray.h" #include "IFilesystem.h" -#include "..\common\TLoggerFactory.h" +#include "..\liblogger\TLoggerFactory.h" namespace chcore { Index: src/libchcore/TSubTaskCopyMove.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TSubTaskCopyMove.h (.../TSubTaskCopyMove.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TSubTaskCopyMove.h (.../TSubTaskCopyMove.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -28,7 +28,7 @@ #include "CommonDataTypes.h" #include "TBufferSizes.h" #include "IFilesystemFile.h" -#include "../common/TLogger.h" +#include "../liblogger/TLogger.h" namespace chcore { Index: src/libchcore/TSubTaskDelete.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TSubTaskDelete.h (.../TSubTaskDelete.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TSubTaskDelete.h (.../TSubTaskDelete.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -25,7 +25,7 @@ #include "libchcore.h" #include "TSubTaskBase.h" -#include "../common/TLogger.h" +#include "../liblogger/TLogger.h" namespace chcore { Index: src/libchcore/TSubTaskFastMove.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TSubTaskFastMove.h (.../TSubTaskFastMove.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TSubTaskFastMove.h (.../TSubTaskFastMove.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -25,7 +25,7 @@ #include "libchcore.h" #include "TSubTaskBase.h" -#include "../Common/TLogger.h" +#include "../liblogger/TLogger.h" namespace chcore { Index: src/libchcore/TSubTaskScanDirectory.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TSubTaskScanDirectory.h (.../TSubTaskScanDirectory.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TSubTaskScanDirectory.h (.../TSubTaskScanDirectory.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -27,7 +27,7 @@ #include "TSubTaskBase.h" #include "TPath.h" #include "TBasePathData.h" -#include "../common/TLogger.h" +#include "../liblogger/TLogger.h" namespace chcore { Index: src/libchcore/TTask.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TTask.h (.../TTask.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TTask.h (.../TTask.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -34,8 +34,8 @@ #include "TTaskBaseData.h" #include #include "IFilesystem.h" -#include "..\Common\TLogger.h" -#include "..\common\TLoggerFactory.h" +#include "..\liblogger\TLogger.h" +#include "..\liblogger\TLoggerFactory.h" namespace chcore { Index: src/libchcore/TTaskConfigVerifier.cpp =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TTaskConfigVerifier.cpp (.../TTaskConfigVerifier.cpp) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TTaskConfigVerifier.cpp (.../TTaskConfigVerifier.cpp) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -20,7 +20,7 @@ #include "TTaskConfigVerifier.h" #include "TTaskConfiguration.h" #include -#include "..\Common\TLogger.h" +#include "..\liblogger\TLogger.h" namespace chcore { Index: src/libchcore/TTaskConfigVerifier.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TTaskConfigVerifier.h (.../TTaskConfigVerifier.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TTaskConfigVerifier.h (.../TTaskConfigVerifier.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -19,7 +19,7 @@ #ifndef __TTASKCONFIGVERIFIER_H__ #define __TTASKCONFIGVERIFIER_H__ -#include "..\common\TLogger.h" +#include "..\liblogger\TLogger.h" namespace chcore { Index: src/libchcore/TTaskManager.h =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/TTaskManager.h (.../TTaskManager.h) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/TTaskManager.h (.../TTaskManager.h) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -27,7 +27,7 @@ #include "ISerializer.h" #include "ISerializerFactory.h" #include "TObsoleteFiles.h" -#include "..\common\TMultiLoggerConfig.h" +#include "..\liblogger\TMultiLoggerConfig.h" namespace chcore { Index: src/libchcore/libchcore.vc140.vcxproj =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/libchcore.vc140.vcxproj (.../libchcore.vc140.vcxproj) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/libchcore.vc140.vcxproj (.../libchcore.vc140.vcxproj) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -455,16 +455,6 @@ - - - - - - - - - - @@ -606,16 +596,6 @@ NotUsing NotUsing - - - - - - - - - - @@ -876,6 +856,9 @@ {d41831f5-b2a5-4c92-9f15-1d9ab04722cc} + + {df9957d4-3d95-4ac3-ad3f-dcbea058f79d} + Index: src/libchcore/libchcore.vc140.vcxproj.filters =================================================================== diff -u -r62d767936f1675e1db51174f53c91484fe691937 -rcca174e74e108de1f5729e4cc6c46d2b9a5e25a7 --- src/libchcore/libchcore.vc140.vcxproj.filters (.../libchcore.vc140.vcxproj.filters) (revision 62d767936f1675e1db51174f53c91484fe691937) +++ src/libchcore/libchcore.vc140.vcxproj.filters (.../libchcore.vc140.vcxproj.filters) (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -84,9 +84,6 @@ {0bd6a559-b992-4f1d-abe6-f8105a9d5f50} - - {4a321c2c-525d-4a77-bad6-d01210bba74c} - @@ -461,39 +458,9 @@ Source Files\Task Config - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - Source Files\Library files - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - @@ -874,38 +841,8 @@ Tests\TaskConfig - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - Source Files\Library files - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - - - Source Files\Shared\Logging - \ No newline at end of file Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLogRotator.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogRotator.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLogRotator.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogRotator.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag b8b97b70743c49fcc2aee0db4cb7118db5e26dab is not in file src/liblogger/TLogSink.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogSink.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLogSink.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogSink.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLogSinkCollection.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogSinkCollection.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLogSinkCollection.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogSinkCollection.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag ffbc773697bd08220163bf1e4491a34376b0f61c is not in file src/liblogger/TLogger.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogger.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLogger.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLogger.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLoggerFactory.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerFactory.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLoggerFactory.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerFactory.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag b8b97b70743c49fcc2aee0db4cb7118db5e26dab is not in file src/liblogger/TLoggerInitializer.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerInitializer.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag b8b97b70743c49fcc2aee0db4cb7118db5e26dab is not in file src/liblogger/TLoggerInitializer.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerInitializer.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLoggerLevelConfig.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerLevelConfig.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLoggerLevelConfig.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerLevelConfig.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLoggerLocationConfig.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerLocationConfig.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TLoggerLocationConfig.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TLoggerLocationConfig.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 3f15d095b6b6692c9c9c469f979b9798f448b7c6 is not in file src/liblogger/TMultiFileBackend.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TMultiFileBackend.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag 62d767936f1675e1db51174f53c91484fe691937 is not in file src/liblogger/TMultiFileBackend.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TMultiFileBackend.h'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag b8b97b70743c49fcc2aee0db4cb7118db5e26dab is not in file src/liblogger/TMultiLoggerConfig.cpp Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TMultiLoggerConfig.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: tag b8b97b70743c49fcc2aee0db4cb7118db5e26dab is not in file src/liblogger/TMultiLoggerConfig.h Fisheye: Tag cca174e74e108de1f5729e4cc6c46d2b9a5e25a7 refers to a dead (removed) revision in file `src/common/TMultiLoggerConfig.h'. Fisheye: No comparison available. Pass `N' to diff? Index: src/liblogger/liblogger.vc140.vcxproj =================================================================== diff -u --- src/liblogger/liblogger.vc140.vcxproj (revision 0) +++ src/liblogger/liblogger.vc140.vcxproj (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -0,0 +1,495 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + Testing Debug + Win32 + + + Testing Debug + x64 + + + Testing Release + Win32 + + + Testing Release + x64 + + + + liblogger + {DF9957D4-3D95-4AC3-AD3F-DCBEA058F79D} + liblogger + Win32Proj + + + + StaticLibrary + v120_xp + Unicode + true + + + StaticLibrary + v120_xp + Unicode + true + + + StaticLibrary + v120_xp + Unicode + + + StaticLibrary + v120_xp + Unicode + + + StaticLibrary + Unicode + true + v120_xp + + + StaticLibrary + Unicode + true + v120_xp + + + StaticLibrary + Unicode + v120_xp + + + StaticLibrary + Unicode + v120_xp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.51106.1 + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + true + $(ProjectName)32ud + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + true + $(ProjectName)32ud + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + true + $(ProjectName)64ud + NativeRecommendedRules.ruleset + false + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + true + $(ProjectName)64ud + NativeRecommendedRules.ruleset + false + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + false + $(ProjectName)32u + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + false + $(ProjectName)32u + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + false + $(ProjectName)64u + + + $(SolutionDir)bin\$(Configuration)\ + $(SolutionDir)intermediate\$(PlatformToolset)\$(Platform)\$(ProjectName)_$(Configuration)\ + false + $(ProjectName)64u + + + + Disabled + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Use + Level4 + true + ProgramDatabase + true + ../../ext + NoExtensions + 4512;4714 + + + true + Windows + MachineX86 + "$(OutDir)" + true + + + + + Disabled + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;TESTING;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Use + Level4 + true + ProgramDatabase + true + ..\..\ext\googletest\googletest\include;..\..\ext\googletest\googlemock\include;../../ext + NoExtensions + 4512;4714 + + + true + Windows + MachineX86 + gmock32d.lib;%(AdditionalDependencies) + "$(OutDir)" + true + + + cd "$(TargetDir)" + +if "$(PlatformName)" EQU "x64" goto x64 + +:x32 +"$(SolutionDir)tools\test_runner32.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:x64 +"$(SolutionDir)tools\test_runner64.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:end + + + + + + X64 + + + Disabled + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Use + Level4 + false + ProgramDatabase + 4512;4714 + false + true + ../../ext + + + true + Windows + MachineX64 + "$(OutDir)" + false + + + + + X64 + + + Disabled + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;TESTING;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Use + Level4 + false + ProgramDatabase + 4512;4714 + false + true + ..\..\ext\googletest\googletest\include;..\..\ext\googletest\googlemock\include;../../ext + + + true + Windows + MachineX64 + gmock64d.lib;%(AdditionalDependencies) + "$(OutDir)" + false + + + cd "$(TargetDir)" + +if "$(PlatformName)" EQU "x64" goto x64 + +:x32 +"$(SolutionDir)tools\test_runner32.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:x64 +"$(SolutionDir)tools\test_runner64.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:end + + + + + + MaxSpeed + true + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;%(PreprocessorDefinitions) + MultiThreadedDLL + true + Use + Level4 + true + ProgramDatabase + true + ../../ext + NoExtensions + 4512;4714 + + + true + Windows + true + true + MachineX86 + "$(OutDir)" + true + + + + + MaxSpeed + true + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;TESTING;%(PreprocessorDefinitions) + MultiThreadedDLL + true + Use + Level4 + true + ProgramDatabase + true + ..\..\ext\googletest\googletest\include;..\..\ext\googletest\googlemock\include;../../ext + NoExtensions + 4512;4714 + + + true + Windows + true + true + MachineX86 + gmock32.lib;%(AdditionalDependencies) + "$(OutDir)" + true + + + cd "$(TargetDir)" + +if "$(PlatformName)" EQU "x64" goto x64 + +:x32 +"$(SolutionDir)tools\test_runner32.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:x64 +"$(SolutionDir)tools\test_runner64.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:end + + + + + + X64 + + + MaxSpeed + true + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;%(PreprocessorDefinitions) + MultiThreadedDLL + true + Use + Level4 + true + ProgramDatabase + true + ../../ext + 4512;4714 + + + true + Windows + true + true + MachineX64 + "$(OutDir)" + false + + + + + X64 + + + MaxSpeed + true + _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;liblogger_EXPORTS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;NOMINMAX;TESTING;%(PreprocessorDefinitions) + MultiThreadedDLL + true + Use + Level4 + true + ProgramDatabase + true + ..\..\ext\googletest\googletest\include;..\..\ext\googletest\googlemock\include;../../ext + 4512;4714 + + + true + Windows + true + true + MachineX64 + gmock64.lib;%(AdditionalDependencies) + "$(OutDir)" + false + + + cd "$(TargetDir)" + +if "$(PlatformName)" EQU "x64" goto x64 + +:x32 +"$(SolutionDir)tools\test_runner32.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:x64 +"$(SolutionDir)tools\test_runner64.exe" "$(TargetPath)" --gtest_shuffle --gtest_output="xml:$(TargetPath).UnitTests.xml" +goto end + +:end + + + + + + + + + + + + + + + + + + + Create + Create + Create + Create + Create + Create + Create + Create + + + + + + + + + + + + + + + + \ No newline at end of file Index: src/liblogger/liblogger.vc140.vcxproj.filters =================================================================== diff -u --- src/liblogger/liblogger.vc140.vcxproj.filters (revision 0) +++ src/liblogger/liblogger.vc140.vcxproj.filters (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -0,0 +1,86 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {e160d2cd-2a88-40ef-97b4-6b7d3b7ed6b1} + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files\Library files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Source Files\Library files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file Index: src/liblogger/stdafx.cpp =================================================================== diff -u --- src/liblogger/stdafx.cpp (revision 0) +++ src/liblogger/stdafx.cpp (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -0,0 +1,8 @@ +// stdafx.cpp : source file that includes just the standard includes +// libchcore.pch will be the pre-compiled header +// stdafx.obj will contain the pre-compiled type information + +#include "stdafx.h" + +// TODO: reference any additional headers you need in STDAFX.H +// and not in this file Index: src/liblogger/stdafx.h =================================================================== diff -u --- src/liblogger/stdafx.h (revision 0) +++ src/liblogger/stdafx.h (revision cca174e74e108de1f5729e4cc6c46d2b9a5e25a7) @@ -0,0 +1,15 @@ +// stdafx.h : include file for standard system include files, +// or project specific include files that are used frequently, but +// are changed infrequently +// + +#pragma once + +#include "../common/targetver.h" + +#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers +// Windows Header Files: +#include +#include +#include +#include