update sqlitecpp & merge property settings into properties
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
ff9bf0c14a
commit
88ca7769d1
39 changed files with 412 additions and 253 deletions
|
|
@ -2,8 +2,15 @@
|
|||
|
||||
#include <objects/object.hpp>
|
||||
|
||||
/// \private
|
||||
struct IkarusEntity : public IkarusObject {
|
||||
struct IkarusEntity final : IkarusObject {
|
||||
inline IkarusEntity(struct IkarusProject * project, IkarusId id):
|
||||
IkarusObject{project, id} {}
|
||||
|
||||
IkarusEntity(IkarusEntity const&) = default;
|
||||
IkarusEntity(IkarusEntity&&) = default;
|
||||
|
||||
IkarusEntity& operator=(IkarusEntity const&) = default;
|
||||
IkarusEntity& operator=(IkarusEntity&&) = default;
|
||||
|
||||
~IkarusEntity() override = default;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue