Usermode/libc++ - Starting on a hacky STL implementation
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / exception
1 /*
2  * Acess2 C++ Library
3  * - By John Hodge (thePowersGang)
4  *
5  * exception (header)
6  * - C++'s base exception type
7  */
8 #ifndef _LIBCXX_EXCEPTION_
9 #define _LIBCXX_EXCEPTION_
10
11 #define noexcept        throw()
12
13 namespace std {
14
15 class exception
16 {
17 public:
18         exception() noexcept;
19         exception(const exception& e) noexcept;
20         exception& operator= (const exception& e) noexcept;
21         virtual ~exception() noexcept;
22         virtual const char* what() const noexcept;
23 };
24
25 };      // namespace std
26
27 #endif
28 // vim: ft=cpp
29

UCC git Repository :: git.ucc.asn.au