os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/test_bitset.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/***********************************************************************************
sl@0
     2
  test_bitset.cpp
sl@0
     3
sl@0
     4
 * Copyright (c) 1997
sl@0
     5
 * Mark of the Unicorn, Inc.
sl@0
     6
 *
sl@0
     7
 * Permission to use, copy, modify, distribute and sell this software
sl@0
     8
 * and its documentation for any purpose is hereby granted without fee,
sl@0
     9
 * provided that the above copyright notice appear in all copies and
sl@0
    10
 * that both that copyright notice and this permission notice appear
sl@0
    11
 * in supporting documentation.  Mark of the Unicorn makes no
sl@0
    12
 * representations about the suitability of this software for any
sl@0
    13
 * purpose.  It is provided "as is" without express or implied warranty.
sl@0
    14
sl@0
    15
***********************************************************************************/
sl@0
    16
#include "Prefix.h"
sl@0
    17
#if defined( EH_BITSET_IMPLEMENTED )
sl@0
    18
#include "Tests.h"
sl@0
    19
#include <bitset>
sl@0
    20
#include "TestClass.h"
sl@0
    21
#include "LeakCheck.h"
sl@0
    22
#include "test_construct.h"
sl@0
    23
#include "test_assign_op.h"
sl@0
    24
#include "test_push_back.h"
sl@0
    25
#include "test_insert.h"
sl@0
    26
#include "test_push_front.h"
sl@0
    27
sl@0
    28
typedef bitset<100> TestBitset;
sl@0
    29
sl@0
    30
inline sequence_container_tag
sl@0
    31
container_category(const TestBitset&)
sl@0
    32
{
sl@0
    33
  return sequence_container_tag();
sl@0
    34
}
sl@0
    35
sl@0
    36
void test_bitset()
sl@0
    37
{
sl@0
    38
}
sl@0
    39
#endif // EH_BITSET_IMPLEMENTED