mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-04-24 09:48:26 -05:00
d9815e9d5a
Added the test case which tests returning the std::unique_ptr<Relation<>> instead of the derived relation eg. std::unique_ptr<HasMany> from the relationship factory methods. This behavior is considered an additional feature and is possible thanks to the polymorphism.
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
INCLUDEPATH += $$PWD
|
|
|
|
HEADERS += \
|
|
$$PWD/models/album.hpp \
|
|
$$PWD/models/albumimage.hpp \
|
|
$$PWD/models/datetime.hpp \
|
|
$$PWD/models/filepropertyproperty.hpp \
|
|
$$PWD/models/massassignmentmodels.hpp \
|
|
$$PWD/models/phone.hpp \
|
|
$$PWD/models/role.hpp \
|
|
$$PWD/models/roleuser.hpp \
|
|
$$PWD/models/setting.hpp \
|
|
$$PWD/models/tag.hpp \
|
|
$$PWD/models/tag_returnrelation.hpp \
|
|
$$PWD/models/tagged.hpp \
|
|
$$PWD/models/tagproperty.hpp \
|
|
$$PWD/models/torrent.hpp \
|
|
$$PWD/models/torrent_returnrelation.hpp \
|
|
$$PWD/models/torrenteager.hpp \
|
|
$$PWD/models/torrenteager_failed.hpp \
|
|
$$PWD/models/torrenteager_withdefault.hpp \
|
|
$$PWD/models/torrenteager_without_qdatetime.hpp \
|
|
$$PWD/models/torrentpeer.hpp \
|
|
$$PWD/models/torrentpeereager.hpp \
|
|
$$PWD/models/torrentpeereager_norelations.hpp \
|
|
$$PWD/models/torrentpreviewablefile.hpp \
|
|
$$PWD/models/torrentpreviewablefileeager.hpp \
|
|
$$PWD/models/torrentpreviewablefileeager_withdefault.hpp \
|
|
$$PWD/models/torrentpreviewablefileproperty.hpp \
|
|
$$PWD/models/torrentpreviewablefilepropertyeager.hpp \
|
|
$$PWD/models/type.hpp \
|
|
$$PWD/models/user.hpp \
|
|
|
|
#SOURCES += \
|
|
# $$PWD/models/torrent.cpp \
|