1
0
Fork 0

sending is a requirement of inheritors

This commit is contained in:
Kevin Matz 2023-04-25 08:14:54 -04:00
parent e29b41c812
commit 38ff40e646
1 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,9 @@
*/
#pragma once
#include <memory>
#include "message.h"
namespace OSC {
/**
@ -33,6 +36,11 @@ class Client
public:
explicit Client();
virtual ~Client();
/**
* @brief send
*/
virtual void send(std::shared_ptr<Message>) = 0;
};
} // namespace OSC