mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
5372f12d8b
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
323 B
C++
16 lines
323 B
C++
// 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
|