From 0e661409b1837beedf62cdf05f18e1453cb880ae Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 7 Nov 2023 16:52:42 +1100 Subject: Fix missing licenses Includes removing unused shared_string This helps with #6, but there's still more work to do --- .../shared_string_test/SharedStringTest.cpp | 24 ------ .../shared_string_test/shared_string_test.sln | 22 ----- .../shared_string_test/shared_string_test.vcxproj | 99 ---------------------- .../shared_string_test.vcxproj.filters | 36 -------- lib/shared_string/shared_string_test/stdafx.cpp | 8 -- lib/shared_string/shared_string_test/stdafx.h | 6 -- lib/shared_string/shared_string_test/targetver.h | 8 -- 7 files changed, 203 deletions(-) delete mode 100755 lib/shared_string/shared_string_test/SharedStringTest.cpp delete mode 100755 lib/shared_string/shared_string_test/shared_string_test.sln delete mode 100755 lib/shared_string/shared_string_test/shared_string_test.vcxproj delete mode 100755 lib/shared_string/shared_string_test/shared_string_test.vcxproj.filters delete mode 100755 lib/shared_string/shared_string_test/stdafx.cpp delete mode 100755 lib/shared_string/shared_string_test/stdafx.h delete mode 100755 lib/shared_string/shared_string_test/targetver.h (limited to 'lib/shared_string/shared_string_test') diff --git a/lib/shared_string/shared_string_test/SharedStringTest.cpp b/lib/shared_string/shared_string_test/SharedStringTest.cpp deleted file mode 100755 index 3bccf103..00000000 --- a/lib/shared_string/shared_string_test/SharedStringTest.cpp +++ /dev/null @@ -1,24 +0,0 @@ -#include "stdafx.h" -#include "CppUnitTest.h" -#include "../shared_string.h" - -using namespace Microsoft::VisualStudio::CppUnitTestFramework; - -namespace shared_string_test -{ - TEST_CLASS(SharedStringTest) - { - public: - - TEST_METHOD(Assign) { - - shared_string s = "Test"; - - Assert::IsTrue(s == "Test"); - - s = "NO"; - - Assert::IsTrue(s == "NO"); - } - }; -} \ No newline at end of file diff --git a/lib/shared_string/shared_string_test/shared_string_test.sln b/lib/shared_string/shared_string_test/shared_string_test.sln deleted file mode 100755 index 2fac5c56..00000000 --- a/lib/shared_string/shared_string_test/shared_string_test.sln +++ /dev/null @@ -1,22 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.31101.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shared_string_test", "shared_string_test.vcxproj", "{79A93E93-50A8-46A3-A592-604F74C3BBEB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {79A93E93-50A8-46A3-A592-604F74C3BBEB}.Debug|Win32.ActiveCfg = Debug|Win32 - {79A93E93-50A8-46A3-A592-604F74C3BBEB}.Debug|Win32.Build.0 = Debug|Win32 - {79A93E93-50A8-46A3-A592-604F74C3BBEB}.Release|Win32.ActiveCfg = Release|Win32 - {79A93E93-50A8-46A3-A592-604F74C3BBEB}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/lib/shared_string/shared_string_test/shared_string_test.vcxproj b/lib/shared_string/shared_string_test/shared_string_test.vcxproj deleted file mode 100755 index d2423735..00000000 --- a/lib/shared_string/shared_string_test/shared_string_test.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {79A93E93-50A8-46A3-A592-604F74C3BBEB} - Win32Proj - shared_string_test - - - - DynamicLibrary - true - v120 - Unicode - false - - - DynamicLibrary - false - v120 - true - Unicode - false - - - - - - - - - - - - - true - - - true - - - - Use - Level3 - Disabled - $(VCInstallDir)UnitTest\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;%(PreprocessorDefinitions) - true - - - Windows - true - $(VCInstallDir)UnitTest\lib;%(AdditionalLibraryDirectories) - - - - - Level3 - Use - MaxSpeed - true - true - $(VCInstallDir)UnitTest\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;%(PreprocessorDefinitions) - true - - - Windows - true - true - true - $(VCInstallDir)UnitTest\lib;%(AdditionalLibraryDirectories) - - - - - - - - - - Create - Create - - - - - - - \ No newline at end of file diff --git a/lib/shared_string/shared_string_test/shared_string_test.vcxproj.filters b/lib/shared_string/shared_string_test/shared_string_test.vcxproj.filters deleted file mode 100755 index 1ee25f1b..00000000 --- a/lib/shared_string/shared_string_test/shared_string_test.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/lib/shared_string/shared_string_test/stdafx.cpp b/lib/shared_string/shared_string_test/stdafx.cpp deleted file mode 100755 index 539b4668..00000000 --- a/lib/shared_string/shared_string_test/stdafx.cpp +++ /dev/null @@ -1,8 +0,0 @@ -// stdafx.cpp : source file that includes just the standard includes -// shared_string_test.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 diff --git a/lib/shared_string/shared_string_test/stdafx.h b/lib/shared_string/shared_string_test/stdafx.h deleted file mode 100755 index fde457b1..00000000 --- a/lib/shared_string/shared_string_test/stdafx.h +++ /dev/null @@ -1,6 +0,0 @@ -#pragma once - -#include "targetver.h" - -#include "CppUnitTest.h" - diff --git a/lib/shared_string/shared_string_test/targetver.h b/lib/shared_string/shared_string_test/targetver.h deleted file mode 100755 index 87c0086d..00000000 --- a/lib/shared_string/shared_string_test/targetver.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -// Including SDKDDKVer.h defines the highest available Windows platform. - -// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and -// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. - -#include -- cgit v1.2.3