summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/throw_exception/test/lib2_throw.hpp
blob: 59e8dc27e66ed7343db05b97ce6421a6540e0f1c (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
#ifndef LIB2_THROW_HPP_INCLUDED
#define LIB2_THROW_HPP_INCLUDED

// Copyright 2018 Peter Dimov
//
// 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

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

#if defined(LIB2_DYN_LINK)
# if defined(LIB2_SOURCE)
#  define LIB2_DECL BOOST_SYMBOL_EXPORT
# else
#  define LIB2_DECL BOOST_SYMBOL_IMPORT
# endif
#else
# define LIB2_DECL
#endif

namespace lib2
{

struct BOOST_SYMBOL_VISIBLE exception: public std::exception
{
};

LIB2_DECL void f();

} // namespace lib2

#endif // #ifndef LIB2_THROW_HPP_INCLUDED