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_generators.hpp>
|
||||||
#include <boost/uuid/uuid_io.hpp>
|
#include <boost/uuid/uuid_io.hpp>
|
||||||
|
|
||||||
Entity::Entity() {}
|
//Entity::Entity() {}
|
||||||
|
|
||||||
void Entity::createUuid()
|
void Entity::createUuid()
|
||||||
{
|
{
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
class Entity
|
class Entity
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Entity();
|
//Entity();
|
||||||
virtual ~Entity() = 0;
|
//ivirtual ~Entity() = 0;
|
||||||
const boost::uuids::uuid& getUuid() const { return uuid; };
|
const boost::uuids::uuid& getUuid() const { return uuid; };
|
||||||
void createUuid();
|
void createUuid();
|
||||||
void createUuidFromString(const std::string& uuidString);
|
void createUuidFromString(const std::string& uuidString);
|
||||||
|
|
Loading…
Reference in a new issue