blob: c27db772659296c6ca99f133072a9567d8d3e874 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// SPDX-License-Identifier: GPL-2.0
#ifndef DIVESITEPICTURESMODEL_H
#define DIVESITEPICTURESMODEL_H
#include "divepicturemodel.h"
class DiveSitePicturesModel : public DivePictureModel {
Q_OBJECT
public:
static DiveSitePicturesModel *instance();
void updateDivePictures();
private:
DiveSitePicturesModel();
};
#endif
|