OSDN Git Service

* gnu/gcj/text/LocaleData_en.java (monetarySeparator): Added.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / bits / std_typeinfo.h
1
2 // Copyright (C) 1997-1999 Free Software Foundation, Inc.
3 //
4 // This file is part of the GNU ISO C++ Library.  This library is free
5 // software; you can redistribute it and/or modify it under the
6 // terms of the GNU General Public License as published by the
7 // Free Software Foundation; either version 2, or (at your option)
8 // any later version.
9
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14
15 // You should have received a copy of the GNU General Public License along
16 // with this library; see the file COPYING.  If not, write to the Free
17 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
18 // USA.
19
20 // As a special exception, you may use this file as part of a free software
21 // library without restriction.  Specifically, if other files instantiate
22 // templates or use macros or inline functions from this file, or you compile
23 // this file and link it with other files to produce an executable, this
24 // file does not by itself cause the resulting executable to be covered by
25 // the GNU General Public License.  This exception does not however
26 // invalidate any other reasons why the executable file might be covered by
27 // the GNU General Public License.
28
29
30 #ifndef _CPP_TYPEINFO
31 #define _CPP_TYPEINFO 1
32
33 #include <bits/c++config.h>
34 #include <bits/std_exception.h>
35
36 #ifdef __GNUG__
37 # pragma GCC system_header
38 # include_next <typeinfo>
39 #else
40
41 __STL_BEGIN_NAMESPACE
42
43     class type_info {
44     public:
45       virtual ~type_info();
46       bool operator==(const type_info& rhs) const;
47       bool operator!=(const type_info& rhs) const;
48       bool before(const type_info& rhs) const;
49       const char* name() const;
50     private:
51       type_info(const type_info& rhs);
52       type_info& operator=(const type_info& rhs);
53     };
54
55     class bad_cast : public exception {
56     public:
57       bad_cast() throw();
58       bad_cast(const bad_cast&) throw();
59       bad_cast& operator=(const bad_cast&) throw();
60       virtual ~bad_cast() throw();
61       virtual const char* what() const throw();
62     };
63
64     class bad_typeid : public exception {
65     public:
66       bad_typeid() throw();
67       bad_typeid(const bad_typeid&) throw();
68       bad_typeid& operator=(const bad_typeid&) throw();
69       virtual ~bad_typeid() throw();
70       virtual const char* what() const throw();
71     };
72
73 __STL_END_NAMESPACE
74
75 #endif
76
77 #endif /* _CPP_TYPEINFO */
78
79 // Local Variables:
80 // mode:C++
81 // End: