diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-04-17 16:49:15 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-06 13:58:09 -0700 |
commit | fe82cb32b93e906b9bf53010538651b9c84df9db (patch) | |
tree | 91d944915294c37136221074e31e8077cefc52ad /packaging/ios | |
parent | 6f8cc5aafecdbbd824be8872c6c4d837d725ef40 (diff) | |
download | subsurface-fe82cb32b93e906b9bf53010538651b9c84df9db.tar.gz |
media: add small C++ helper describing a picture struct
By using a std::string instead of a C-string, memory management
becomes so much simpler! This class will be used for keeping track
of deleted/added pictures in the undo system.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'packaging/ios')
-rw-r--r-- | packaging/ios/Subsurface-mobile.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packaging/ios/Subsurface-mobile.pro b/packaging/ios/Subsurface-mobile.pro index a036ccae8..36da3e3af 100644 --- a/packaging/ios/Subsurface-mobile.pro +++ b/packaging/ios/Subsurface-mobile.pro @@ -64,6 +64,7 @@ SOURCES += ../../subsurface-mobile-main.cpp \ ../../core/parse-xml.c \ ../../core/parse.c \ ../../core/picture.c \ + ../../core/pictureobj.cpp \ ../../core/import-suunto.c \ ../../core/import-shearwater.c \ ../../core/import-cobalt.c \ @@ -205,6 +206,7 @@ HEADERS += \ ../../core/units.h \ ../../core/version.h \ ../../core/picture.h \ + ../../core/pictureobj.h \ ../../core/planner.h \ ../../core/divesite.h \ ../../core/checkcloudconnection.h \ |