1
0
Fork 0

explicit virtual destructor

This commit is contained in:
Kevin Matz 2023-04-24 13:06:26 -04:00
parent 031d00bed4
commit e94db990ac
1 changed files with 2 additions and 1 deletions

View File

@ -26,12 +26,13 @@
namespace OSC {
/**
* @brief The Client class
* @brief \cite Spec10 Any application that sends OSC Packets is an OSC Client.
*/
class Client
{
public:
explicit Client();
virtual ~Client();
};
} // namespace OSC