Changeset 524 in dev for trunk/ab5.0/jenga
- Timestamp:
- May 1, 2008, 11:20:31 PM (17 years ago)
- Location:
- trunk/ab5.0/jenga/include/common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/jenga/include/common/Environment.h
r480 r524 1 1 #pragma once 2 #pragma warning(disable : 4996)3 4 #include <vector>5 #include <string>6 7 #include <stdlib.h>8 9 #include <windows.h>10 11 2 12 3 namespace Jenga{ 13 4 namespace Common{ 14 5 6 #pragma warning(disable : 4996) 15 7 16 8 class Environment -
trunk/ab5.0/jenga/include/common/Exception.h
r207 r524 1 1 #pragma once 2 3 #include <string>4 5 2 6 3 namespace Jenga{ -
trunk/ab5.0/jenga/include/common/Path.h
r480 r524 1 1 #pragma once 2 #pragma warning(disable : 4996)3 4 #include <vector>5 #include <string>6 7 #include <stdlib.h>8 9 2 10 3 namespace Jenga{ -
trunk/ab5.0/jenga/include/common/String.h
r472 r524 1 1 #pragma once 2 3 #include <vector>4 #include <string>5 2 6 3 namespace Jenga{ 7 4 namespace Common{ 5 8 6 9 7 typedef std::vector<std::string> Strings; … … 13 11 std::string& StringReplace( std::string& str, const std::string sb, const std::string sa ); 14 12 13 15 14 } 16 15 }
Note:
See TracChangeset
for help on using the changeset viewer.