Btk
x11.hpp
1 #if !defined(_BTK_PLATFORM_X11_HPP_)
2 #define _BTK_PLATFORM_X11_HPP_
3 #include "../defs.hpp"
4 #include "../exception.hpp"
5 #include <string>
6 namespace Btk{
7  namespace X11{
8  BTKAPI void Init();
9  BTKAPI void Quit();
10  };
11  //X11 Error
12  class XError:public RuntimeError{
13  public:
14  XError() = default;
15  XError(const XError &) = default;
16  ~XError();
17  const char *what() const noexcept;
18  };
19 };
20 
21 
22 #endif // _BTK_PLATFORM_X11_HPP_
Definition: x11.hpp:12
This header include many useful containers.
Definition: async.hpp:7
BTKAPI void Quit()
Quit font utils.
Definition: fontutils.cpp:46