OSSIA
Open Scenario System for Interactive Application
message_origin_identifier.hpp
1 #pragma once
2 #include <cstdint>
3 
4 namespace ossia::net
5 {
6 class protocol_base;
7 
8 struct message_origin_identifier
9 {
10  ossia::net::protocol_base& protocol;
11  uintptr_t identifier{};
12 };
13 
14 }
The protocol_base class.
Definition: protocol.hpp:40