~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to lib/cppunit-1.10.0/include/cppunit/portability/CppUnitSet.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2006-11-11 10:32:06 UTC
  • Revision ID: james.westby@ubuntu.com-20061111103206-f3p0r9g0vq44rp3r
Tags: upstream-3.0.PRE5
ImportĀ upstreamĀ versionĀ 3.0.PRE5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CPPUNIT_PORTABILITY_CPPUNITSET_H
 
2
#define CPPUNIT_PORTABILITY_CPPUNITSET_H
 
3
 
 
4
// The technic used is similar to the wrapper of STLPort.
 
5
 
 
6
#include <cppunit/Portability.h>
 
7
#include <functional>
 
8
#include <set>
 
9
 
 
10
 
 
11
#if CPPUNIT_STD_NEED_ALLOCATOR
 
12
 
 
13
template<class T>
 
14
class CppUnitSet : public std::set<T
 
15
                                  ,std::less<T>
 
16
                                  ,CPPUNIT_STD_ALLOCATOR>
 
17
{
 
18
public:
 
19
};
 
20
 
 
21
#else // CPPUNIT_STD_NEED_ALLOCATOR
 
22
 
 
23
#define CppUnitSet std::set
 
24
 
 
25
#endif
 
26
 
 
27
#endif // CPPUNIT_PORTABILITY_CPPUNITSET_H
 
28