2
0

core_message.h 356 B

123456789101112131415
  1. #ifndef AFUN_CORE_MESSAGE_H
  2. #define AFUN_CORE_MESSAGE_H
  3. #include "aFuntool.h"
  4. #include "aFunCoreExport.h"
  5. namespace aFuncore {
  6. class AFUN_CORE_EXPORT Message {
  7. public:
  8. AFUN_INLINE explicit Message() = default;
  9. virtual ~Message() = default;
  10. Message &operator=(const Message &)=delete;
  11. };
  12. }
  13. #endif //AFUN_CORE_MESSAGE_H