1
0
Fork 0

remove unnecessary virtuals

This commit is contained in:
Kevin Matz 2021-08-25 10:33:15 -04:00
parent 5ea90a2beb
commit dee458bf88
3 changed files with 5 additions and 13 deletions

View File

@ -23,8 +23,13 @@
*/
#pragma once
#include "ept.h"
namespace RDMnet::EPT {
/**
* @brief The EPT::Broker class
*/
class Broker
{
public:

View File

@ -34,16 +34,4 @@ Client::Client()
}
/**
* @brief Client::~Client
*/
Client::~Client()
{
}
} // namespace RDMnet::EPT

View File

@ -34,7 +34,6 @@ class Client
{
public:
Client();
virtual ~Client();
};
} // namespace RDMnet::EPT