2#include <State/Address.hpp>
3#include <State/Value.hpp>
16 bool operator==(
const Message& m)
const noexcept
18 return address == m.address && value == m.value;
21 bool operator!=(
const Message& m)
const noexcept
23 return address != m.address || value != m.value;
29 QString toString()
const;
36QDebug operator<<(QDebug s,
const Message& mess);
38using MessageList = std::vector<Message>;
39inline bool operator<(
const State::MessageList&,
const State::MessageList&)
45SCORE_SERIALIZE_DATASTREAM_DECLARE(SCORE_LIB_STATE_EXPORT,
State::Message)
46SCORE_SERIALIZE_DATASTREAM_DECLARE(SCORE_LIB_STATE_EXPORT, State::MessageList)
Utilities for OSSIA data structures.
Definition DeviceInterface.hpp:33
Definition Address.hpp:108
The Message struct.
Definition Message.hpp:15