00001
#ifndef CPPUNIT_PORTABILITY_CPPUNITDEQUE_H
00002
#define CPPUNIT_PORTABILITY_CPPUNITDEQUE_H
00003
00004
00005
00006
#include <cppunit/Portability.h>
00007
#include <deque>
00008
00009
00010
#if CPPUNIT_STD_NEED_ALLOCATOR
00011
00012
template<
class T>
00013
class CppUnitDeque :
public std::deque<T,CPPUNIT_STD_ALLOCATOR>
00014 {
00015
public:
00016 };
00017
00018
#else // CPPUNIT_STD_NEED_ALLOCATOR
00019
00020 #define CppUnitDeque std::deque
00021
00022
#endif
00023
00024
#endif // CPPUNIT_PORTABILITY_CPPUNITDEQUE_H
00025