remove ctor/dtor

This commit is contained in:
Martin Brodbeck 2018-07-09 17:50:43 +02:00
parent 39ab4b180e
commit 6a075f2402
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>
Entity::Entity() {}
//Entity::Entity() {}
void Entity::createUuid()
{

View File

@ -8,8 +8,8 @@
class Entity
{
public:
Entity();
virtual ~Entity() = 0;
//Entity();
//ivirtual ~Entity() = 0;
const boost::uuids::uuid& getUuid() const { return uuid; };
void createUuid();
void createUuidFromString(const std::string& uuidString);