remove ctor/dtor
This commit is contained in:
parent
39ab4b180e
commit
6a075f2402
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
|||
#include <boost/uuid/uuid_generators.hpp>
|
||||
#include <boost/uuid/uuid_io.hpp>
|
||||
|
||||
Entity::Entity() {}
|
||||
//Entity::Entity() {}
|
||||
|
||||
void Entity::createUuid()
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue