Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions afanasy/src/libafanasy/msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,5 +241,13 @@ TLAST

void rw_header( bool write); ///< Read or write message header.
void v_readwrite( Msg * msg);

// Delete copy constructor and copy assignment as they are not implemented
Msg(const Msg &) = delete;
Msg &operator=(const Msg &) = delete;

// Delete move constructor and move assignment as they are not implemented
Msg(Msg &&) = delete;
Msg &operator=(Msg &&) = delete;
};
}