mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-08 08:46:16 +00:00
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
|