Initial commit.
This commit is contained in:
33
tools/ModView/stl.h
Normal file
33
tools/ModView/stl.h
Normal 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 /////////////////
|
||||
|
||||
|
||||
Reference in New Issue
Block a user