mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
16 lines
287 B
C
16 lines
287 B
C
|
#ifndef DIVESITEPICTURESMODEL_H
|
||
|
#define DIVESITEPICTURESMODEL_H
|
||
|
|
||
|
#include "divepicturemodel.h"
|
||
|
|
||
|
class DiveSitePicturesModel : public DivePictureModel {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
static DiveSitePicturesModel *instance();
|
||
|
void updateDivePictures();
|
||
|
private:
|
||
|
DiveSitePicturesModel();
|
||
|
};
|
||
|
|
||
|
#endif
|