SObjectizer  5.8
Loading...
Searching...
No Matches
message.cpp
Go to the documentation of this file.
1/*
2 SObjectizer 5.
3*/
4
5#include <so_5/message.hpp>
6
7namespace so_5
8{
9
10//
11// message_t
12//
13
18
24
30
32message_t::operator=( const message_t & other )
33{
35 return *this;
36}
37
39message_t::operator=( message_t && other ) noexcept
40{
42 return *this;
43}
44
45namespace message_limit
46{
47
48//
49// any_unspecified_message
50//
51
52any_unspecified_message::~any_unspecified_message() {}
53any_unspecified_message::any_unspecified_message() {}
54
55} /* namespace message_limit */
56
57} /* namespace so_5 */
The base class for the object with a reference counting.
atomic_refcounted_t() noexcept
Default constructor.
A base class for agent messages.
Definition message.hpp:47
message_t(const message_t &other)
Definition message.cpp:19
message_t & operator=(message_t &&other) noexcept
Definition message.cpp:39
message_t & operator=(const message_t &other)
Definition message.cpp:32
message_mutability_t m_mutability
Is message mutable or immutable?
Definition message.hpp:188
message_t(message_t &&other)
Definition message.cpp:25
All stuff related to message limits.
Definition message.hpp:862
Private part of message limit implementation.
Definition agent.cpp:33
message_mutability_t
A enum with variants of message mutability or immutability.
Definition types.hpp:94