My Project
Loading...
Searching...
No Matches
StdHeaders.h
Go to the documentation of this file.
1#ifndef __cxxtest_StdHeaders_h__
2#define __cxxtest_StdHeaders_h__
3
4//
5// This file basically #includes the STL headers.
6// It exists to support warning level 4 in Visual C++
7//
8
9#ifdef _MSC_VER
10# pragma warning( push, 1 )
11#endif // _MSC_VER
12
13#include <complex>
14#include <deque>
15#include <list>
16#include <map>
17#include <set>
18#include <string>
19#include <vector>
20
21#ifdef _MSC_VER
22# pragma warning( pop )
23#endif // _MSC_VER
24
25#endif // __cxxtest_StdHeaders_h__