Initial commit.

This commit is contained in:
Jim Gray
2013-04-04 14:32:05 -07:00
parent ba5c81da32
commit d71d53e8ec
2180 changed files with 1393544 additions and 1 deletions

33
tools/ModView/stl.h Normal file
View File

@@ -0,0 +1,33 @@
// Filename:- stl.h
//
// pure laziness.... :-)
#ifndef STL_H
#define STL_H
#pragma warning (push, 3) //go back down to 3 for the stl include
#include "disablewarnings.h"
#include <list>
#include <map>
#include <string>
#include <set>
#include <vector>
#pragma warning (pop)
using namespace std;
#include "disablewarnings.h"
// some common ones...
//
typedef set <string> StringSet_t;
typedef vector <string> StringVector_t;
#endif // #ifndef STL_H
////////////////// eof /////////////////