~ubuntu-branches/ubuntu/wily/psi/wily-proposed

« back to all changes in this revision

Viewing changes to third-party/cppunit/cppunit/include/cppunit/portability/CppUnitStack.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CPPUNIT_PORTABILITY_CPPUNITSTACK_H
 
2
#define CPPUNIT_PORTABILITY_CPPUNITSTACK_H
 
3
 
 
4
// The technic used is similar to the wrapper of STLPort.
 
5
 
 
6
#include <cppunit/Portability.h>
 
7
#include <deque>
 
8
#include <stack>
 
9
 
 
10
 
 
11
#if CPPUNIT_STD_NEED_ALLOCATOR
 
12
 
 
13
template<class T>
 
14
class CppUnitStack : public std::stack<T
 
15
                                      ,std::deque<T,CPPUNIT_STD_ALLOCATOR> >
 
16
{
 
17
public:
 
18
};
 
19
 
 
20
#else // CPPUNIT_STD_NEED_ALLOCATOR
 
21
 
 
22
#define CppUnitStack std::stack
 
23
 
 
24
#endif
 
25
 
 
26
#endif // CPPUNIT_PORTABILITY_CPPUNITSTACK_H
 
 
b'\\ No newline at end of file'