no message

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@35 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
magmaikh 2002-08-15 02:07:50 +00:00
parent 8c599321c7
commit 69936e7e81
27 changed files with 2073 additions and 495 deletions

View file

@ -0,0 +1,31 @@
extern void Test_TypeList();
extern void Test_SmallObj();
extern void Test_Functor();
extern void Test_Singleton();
extern void Test_SmartPtr();
extern void Test_ObjectFactory();
extern void Test_AbstractFactory();
extern void Test_Vistor();
extern void Test_MultiMethods();
extern void Test_Threads();
#include <stdlib.h>
int main()
{
Test_TypeList();
Test_SmartPtr();
Test_Singleton();
Test_Threads();
/*Test_SmallObj();
Test_Functor();
*/
/*Test_ObjectFactory();
Test_AbstractFactory();
Test_Vistor();
Test_MultiMethods();
*/
system("pause");
};

View file

@ -0,0 +1,134 @@
<?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="AllTest"
ProjectGUID="{59800972-3512-4147-9E8F-F5239C241F77}"
Keyword="Win32Proj">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory="Debug"
IntermediateDirectory="Debug"
ConfigurationType="1"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
MinimalRebuild="TRUE"
BasicRuntimeChecks="3"
RuntimeLibrary="5"
UsePrecompiledHeader="0"
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="4"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)/AllTest.exe"
LinkIncremental="2"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)/AllTest.pdb"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory="Release"
IntermediateDirectory="Release"
ConfigurationType="1"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="1"
OmitFramePointers="TRUE"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
StringPooling="TRUE"
RuntimeLibrary="4"
EnableFunctionLevelLinking="TRUE"
UsePrecompiledHeader="3"
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)/AllTest.exe"
LinkIncremental="1"
GenerateDebugInformation="TRUE"
SubSystem="1"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
</Configuration>
</Configurations>
<Files>
<Filter
Name="Test"
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm">
<File
RelativePath="AllTest.cpp">
</File>
<File
RelativePath="..\Test_Singleton.cpp">
</File>
<File
RelativePath="..\Test_SmartPtr.cpp">
</File>
<File
RelativePath="..\Test_Threads.cpp">
</File>
<File
RelativePath="..\Test_TypeList.cpp">
</File>
</Filter>
<Filter
Name="Loki"
Filter="">
<File
RelativePath="..\..\..\Singleton.cpp">
</File>
<File
RelativePath="..\..\..\SmallObj.cpp">
</File>
</Filter>
</Files>
<Globals>
</Globals>
</VisualStudioProject>