123456789101112131415161718192021 |
- // file : xml/exception -*- C++ -*-
- // copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
- // license : MIT; see accompanying LICENSE file
- #ifndef XML_EXCEPTION
- #define XML_EXCEPTION
- #include <xml/details/pre.hxx>
- #include <exception>
- #include <xml/details/export.hxx>
- namespace xml
- {
- struct LIBSTUDXML_EXPORT exception: std::exception {};
- }
- #include <xml/details/post.hxx>
- #endif // XML_EXCEPTION
|