CppUnit project page FAQ CppUnit home page

CppUnitDeque.h
Go to the documentation of this file.
1#ifndef CPPUNIT_PORTABILITY_CPPUNITDEQUE_H
2#define CPPUNIT_PORTABILITY_CPPUNITDEQUE_H
3
4// The technic used is similar to the wrapper of STLPort.
5
7#include <deque>
8
9
10#if CPPUNIT_STD_NEED_ALLOCATOR
11
12template<class T>
13class CppUnitDeque : public std::deque<T,CPPUNIT_STD_ALLOCATOR>
14{
15public:
16};
17
18#else // CPPUNIT_STD_NEED_ALLOCATOR
19
20#define CppUnitDeque std::deque
21
22#endif
23
24#endif // CPPUNIT_PORTABILITY_CPPUNITDEQUE_H
25
#define CppUnitDeque
Definition CppUnitDeque.h:20

SourceForge Logo hosts this site. Send comments to:
CppUnit Developers