mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
e39dea3d68
This is a long commit, because it introduces a new abstraction: a general std::vector<> of std::unique_ptrs<>. Moreover, it replaces a number of pointers by C++ references, when the callee does not suppoert null objects. This simplifies memory management and makes ownership more explicit. It is a proof-of-concept and a test-bed for the other core data structrures. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
33 lines
794 B
C++
33 lines
794 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
// A structure that contains all the values we save in a divelog file
|
|
#ifndef DIVELOG_H
|
|
#define DIVELOG_H
|
|
|
|
struct dive_table;
|
|
struct trip_table;
|
|
class dive_site_table;
|
|
struct device_table;
|
|
struct filter_preset_table;
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct divelog {
|
|
struct dive_table *dives;
|
|
struct trip_table *trips;
|
|
dive_site_table *sites;
|
|
struct device_table *devices;
|
|
struct filter_preset_table *filter_presets;
|
|
bool autogroup;
|
|
void clear();
|
|
divelog();
|
|
~divelog();
|
|
divelog(divelog &&log); // move constructor (argument is consumed).
|
|
divelog &operator=(divelog &&log); // move assignment (argument is consumed).
|
|
};
|
|
|
|
extern struct divelog divelog;
|
|
|
|
void clear_divelog(struct divelog *);
|
|
extern void delete_single_dive(struct divelog *, int idx);
|
|
|
|
#endif
|