Nebula
Loading...
Searching...
No Matches
id.h
Go to the documentation of this file.
1
#pragma once
2
//------------------------------------------------------------------------------
13
#include "
core/types.h
"
14
15
//------------------------------------------------------------------------------
16
namespace
Messaging
17
{
18
class
Id
19
{
20
public
:
22
Id
();
24
bool
operator==
(
const
Id
& rhs)
const
;
25
};
26
27
//------------------------------------------------------------------------------
30
inline
31
Id::Id
()
32
{
33
// empty
34
}
35
36
//------------------------------------------------------------------------------
39
inline
40
bool
41
Id::operator==
(
const
Id
& rhs)
const
42
{
43
return
(
this
== &rhs);
44
}
45
46
}
// namespace Messaging
47
//------------------------------------------------------------------------------
Messaging::Id
A message identifier.
Definition
id.h:19
Messaging::Id::operator==
bool operator==(const Id &rhs) const
equality operator
Definition
id.h:41
Messaging::Id::Id
Id()
constructor
Definition
id.h:31
Messaging
Definition
asyncport.cc:10
types.h
code
foundation
messaging
id.h
Generated on Wed Nov 13 2024 21:37:27 for Nebula. Dark theme by
Tilen Majerle
. All rights reserved.