summaryrefslogtreecommitdiff
path: root/libs/exception/test/helper2.hpp
blob: 0708476ac4606cfc1a1ed652268df9606f5a945e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.

//Distributed under the Boost Software License, Version 1.0. (See accompanying
//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#ifndef UUID_BC765EB4CA2A11DCBDC5828355D89593
#define UUID_BC765EB4CA2A11DCBDC5828355D89593

#include <boost/exception/exception.hpp>
#include <exception>

namespace
boost
    {
    namespace
    exception_test
        {
        struct
        derives_boost_exception:
            public boost::exception,
            public std::exception
            {
            explicit derives_boost_exception( int x );
            virtual ~derives_boost_exception() throw();
            int x_;
            };

        struct
        derives_boost_exception_virtually:
            public virtual boost::exception,
            public std::exception
            {
            explicit derives_boost_exception_virtually( int x );
            virtual ~derives_boost_exception_virtually() throw();
            int x_;
            };

        struct
        derives_std_exception:
            public std::exception
            {
            explicit derives_std_exception( int x );
            virtual ~derives_std_exception() throw();
            int x_;
            };

        template <class>
        void throw_test_exception( int );

        template <>
        void throw_test_exception<derives_boost_exception>( int );

        template <>
        void throw_test_exception<derives_boost_exception_virtually>( int );

        template <>
        void throw_test_exception<derives_std_exception>( int );
        }
    }

#endif