mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-10 07:11:44 +00:00
19 lines
No EOL
400 B
C++
19 lines
No EOL
400 B
C++
#ifndef __ICR_STDAFX__
|
|
#define __ICR_STDAFX__
|
|
|
|
#pragma warning( disable : 4786 ) // identifier was truncated
|
|
|
|
#pragma warning (push, 3)
|
|
#include <string>
|
|
#include <list>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <algorithm>
|
|
#pragma warning (pop)
|
|
|
|
using namespace std;
|
|
|
|
#define STL_ITERATE( a, b ) for ( a = b.begin(); a != b.end(); a++ )
|
|
#define STL_INSERT( a, b ) a.insert( a.end(), b );
|
|
|
|
#endif |