1 | // Aseprite UI Library |
2 | // Copyright (C) 2001-2013 David Capello |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef UI_REGISTER_MESSAGE_H_INCLUDED |
8 | #define UI_REGISTER_MESSAGE_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include "ui/message_type.h" |
12 | |
13 | namespace ui { |
14 | |
15 | class RegisterMessage |
16 | { |
17 | public: |
18 | RegisterMessage(); |
19 | operator MessageType() { return m_type; } |
20 | private: |
21 | MessageType m_type; |
22 | }; |
23 | |
24 | } // namespace ui |
25 | |
26 | #endif |
27 | |