• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /***********************************************************************************
2   test_bitset.cpp
3 
4  * Copyright (c) 1997
5  * Mark of the Unicorn, Inc.
6  *
7  * Permission to use, copy, modify, distribute and sell this software
8  * and its documentation for any purpose is hereby granted without fee,
9  * provided that the above copyright notice appear in all copies and
10  * that both that copyright notice and this permission notice appear
11  * in supporting documentation.  Mark of the Unicorn makes no
12  * representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied warranty.
14 
15 ***********************************************************************************/
16 #include "Prefix.h"
17 #if defined( EH_BITSET_IMPLEMENTED )
18 #include "Tests.h"
19 #include <bitset>
20 #include "TestClass.h"
21 #include "LeakCheck.h"
22 #include "test_construct.h"
23 #include "test_assign_op.h"
24 #include "test_push_back.h"
25 #include "test_insert.h"
26 #include "test_push_front.h"
27 
28 typedef bitset<100> TestBitset;
29 
30 inline sequence_container_tag
container_category(const TestBitset &)31 container_category(const TestBitset&)
32 {
33   return sequence_container_tag();
34 }
35 
test_bitset()36 void test_bitset()
37 {
38 }
39 #endif // EH_BITSET_IMPLEMENTED
40