source: git/libpolys/tests/cxxtest/StdHeaders.h @ 8480db

spielwiese
Last change on this file since 8480db was 4aa8610, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
created libpolys/tests and set up the beginning of a test-suite using cxxtest
  • Property mode set to 100644
File size: 460 bytes
Line 
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__
Note: See TracBrowser for help on using the repository browser.