Began removal of platform/. The Monitor:: namespace is completely converted.
[aesalon.git] / src / monitor / Message.h
blob0be19ae3638d5dd62323cc29d91fe7ecff0b36f3
1 #ifndef AESALON_MONITOR_MESSAGE_H
2 #define AESALON_MONITOR_MESSAGE_H
4 #include <string>
6 namespace Aesalon {
7 namespace Monitor {
9 class Message {
10 public:
11 enum message_type_e {
12 WARNING_MESSAGE,
13 DEBUG_MESSAGE
15 Message(message_type_e type, std::string string);
18 } // namespace Monitor
19 } // namespace Aesalon
21 #endif