rt_normal_message.inline.h 366 B

123456789101112131415
  1. #ifndef AFUN_RT_NORMAL_MESSAGE_INLINE_H
  2. #define AFUN_RT_NORMAL_MESSAGE_INLINE_H
  3. #include "rt_normal_message.h"
  4. namespace aFunrt {
  5. NormalMessage::NormalMessage(NormalMessage &&msg) noexcept : obj {msg.obj}{
  6. msg.obj = nullptr;
  7. }
  8. aFuncore::Object *NormalMessage::getObject() {
  9. return obj;
  10. }
  11. }
  12. #endif //AFUN_RT_NORMAL_MESSAGE_INLINE_H