mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +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
|