- Timestamp:
- May 1, 2008, 12:49:18 PM (17 years ago)
- Location:
- trunk/ab5.0
- Files:
-
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/Delegate.h
r449 r518 1 1 #pragma once 2 2 3 #include <Hashmap.h>4 3 #include <Procedure.h> 5 4 -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Procedure.h
r511 r518 1 1 #pragma once 2 2 3 #include <Hashmap.h>4 3 #include <option.h> 5 4 #include <Program.h> -
trunk/ab5.0/abdev/BasicCompiler_Common/src/ObjectModule.cpp
r517 r518 46 46 using namespace ActiveBasic::Common::Lexical; 47 47 48 #include <Hashmap.h>49 48 #include <Configuration.h> 50 49 #include <Type.h> -
trunk/ab5.0/abdev/ab_common/ab_common.vcproj
r517 r518 344 344 </File> 345 345 <File 346 RelativePath=".\include\Hashmap.h" 347 > 348 </File> 349 <File 346 350 RelativePath=".\stdafx.h" 347 351 > -
trunk/ab5.0/jenga/include/common/CmdLine.h
r457 r518 1 #include <vector> 2 #include <string> 3 1 #pragma once 4 2 5 3 namespace Jenga{ -
trunk/ab5.0/jenga/projects/jenga/jenga.vcproj
r484 r518 45 45 BasicRuntimeChecks="0" 46 46 RuntimeLibrary="1" 47 UsePrecompiledHeader="2" 47 48 WarningLevel="3" 48 49 Detect64BitPortabilityProblems="true" … … 111 112 AdditionalIncludeDirectories="..\..\..\;..\..\..\cpplibs\boost" 112 113 RuntimeLibrary="0" 114 UsePrecompiledHeader="2" 113 115 WarningLevel="3" 114 116 Detect64BitPortabilityProblems="true" … … 175 177 BasicRuntimeChecks="3" 176 178 RuntimeLibrary="1" 179 UsePrecompiledHeader="2" 177 180 WarningLevel="3" 178 181 Detect64BitPortabilityProblems="true" … … 235 238 AdditionalIncludeDirectories="..\..\..\;..\..\..\cpplibs\boost" 236 239 RuntimeLibrary="0" 240 UsePrecompiledHeader="2" 237 241 WarningLevel="3" 238 242 Detect64BitPortabilityProblems="true" … … 290 294 </File> 291 295 <File 292 RelativePath="..\..\src\common\index.cpp"293 >294 </File>295 <File296 296 RelativePath="..\..\src\common\Path.cpp" 297 297 > 298 </File> 299 <File 300 RelativePath=".\stdafx.cpp" 301 > 302 <FileConfiguration 303 Name="Debug(x64)|Win32" 304 > 305 <Tool 306 Name="VCCLCompilerTool" 307 UsePrecompiledHeader="1" 308 /> 309 </FileConfiguration> 310 <FileConfiguration 311 Name="Release(x64)|Win32" 312 > 313 <Tool 314 Name="VCCLCompilerTool" 315 UsePrecompiledHeader="1" 316 /> 317 </FileConfiguration> 318 <FileConfiguration 319 Name="Debug(x86)|Win32" 320 > 321 <Tool 322 Name="VCCLCompilerTool" 323 UsePrecompiledHeader="1" 324 /> 325 </FileConfiguration> 326 <FileConfiguration 327 Name="Release(x86)|Win32" 328 > 329 <Tool 330 Name="VCCLCompilerTool" 331 UsePrecompiledHeader="1" 332 /> 333 </FileConfiguration> 298 334 </File> 299 335 <File … … 332 368 </File> 333 369 <File 370 RelativePath=".\stdafx.h" 371 > 372 </File> 373 <File 334 374 RelativePath="..\..\include\common\String.h" 335 375 > -
trunk/ab5.0/jenga/src/common/CmdLine.cpp
r457 r518 1 #include <jenga/include/common/CmdLine.h> 2 3 #include <boost/foreach.hpp> 1 #include "stdafx.h" 4 2 5 3 using namespace Jenga::Common; -
trunk/ab5.0/jenga/src/common/Directory.cpp
r295 r518 1 #include <boost/foreach.hpp> 2 #include <jenga/include/common/Directory.h> 3 #include <jenga/include/common/Exception.h> 4 5 #include <imagehlp.h> 1 #include "stdafx.h" 6 2 7 3 using namespace std; -
trunk/ab5.0/jenga/src/common/Exception.cpp
r207 r518 1 #include <jenga/include/common/Exception.h> 2 3 #include <windows.h> 1 #include "stdafx.h" 4 2 5 3 -
trunk/ab5.0/jenga/src/common/Path.cpp
r480 r518 1 #include <boost/foreach.hpp> 2 #include <jenga/include/common/Environment.h> 3 #include <jenga/include/common/Path.h> 4 5 #include <windows.h> 6 1 #include "stdafx.h" 7 2 8 3 bool Jenga::Common::Path::IsExistFile() const -
trunk/ab5.0/jenga/src/common/String.cpp
r472 r518 1 #include <boost/foreach.hpp> 2 #include <jenga/include/common/String.h> 3 1 #include "stdafx.h" 4 2 5 3 bool Jenga::Common::IsExistString( const Jenga::Common::Strings &strings, const std::string &findStr )
Note:
See TracChangeset
for help on using the changeset viewer.