#ifndef CPPUNIT_PORTABILITY_CPPUNITVECTOR_H #define CPPUNIT_PORTABILITY_CPPUNITVECTOR_H // The technic used is similar to the wrapper of STLPort. #include #include #if CPPUNIT_STD_NEED_ALLOCATOR template class CppUnitVector : public std::vector { public: }; #else // CPPUNIT_STD_NEED_ALLOCATOR #define CppUnitVector std::vector #endif #endif // CPPUNIT_PORTABILITY_CPPUNITVECTOR_H