CppUnit project page FAQ CppUnit home page

Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

CppUnitSet.h

Go to the documentation of this file.
00001 #ifndef CPPUNIT_PORTABILITY_CPPUNITSET_H
00002 #define CPPUNIT_PORTABILITY_CPPUNITSET_H
00003 
00004 // The technic used is similar to the wrapper of STLPort.
00005  
00006 #include <cppunit/Portability.h>
00007 #include <functional>
00008 #include <set>
00009 
00010 
00011 #if CPPUNIT_STD_NEED_ALLOCATOR
00012 
00013 template<class T>
00014 class CppUnitSet : public std::set<T
00015                                   ,std::less<T>
00016                                   ,CPPUNIT_STD_ALLOCATOR>
00017 {
00018 public:
00019 };
00020 
00021 #else // CPPUNIT_STD_NEED_ALLOCATOR
00022 
00023 #define CppUnitSet std::set
00024 
00025 #endif
00026 
00027 #endif // CPPUNIT_PORTABILITY_CPPUNITSET_H
00028 

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