member variables renamed
This commit is contained in:
parent
21571215bc
commit
3e6e587df8
9 changed files with 37 additions and 41 deletions
|
@ -18,15 +18,15 @@ class EntityUuid : public Entity
|
|||
void setUuidFromString(const std::string& uuidString);
|
||||
void setSourceNo(int sourceNo);
|
||||
|
||||
const boost::uuids::uuid& getUuid() const { return uuid_; };
|
||||
std::string getUuidAsString() const { return boost::uuids::to_string(uuid_); }
|
||||
const boost::uuids::uuid& getUuid() const { return m_uuid; };
|
||||
std::string getUuidAsString() const { return boost::uuids::to_string(m_uuid); }
|
||||
virtual int getSourceNo() const;
|
||||
|
||||
protected:
|
||||
int sourceNo_{};
|
||||
int m_sourceNo{};
|
||||
|
||||
private:
|
||||
boost::uuids::uuid uuid_{};
|
||||
boost::uuids::uuid m_uuid{};
|
||||
};
|
||||
|
||||
#endif // ENTITY_UUID_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue