subsurface/qt-models/divesitepicturesmodel.h
Dirk Hohndel 5372f12d8b Add SPDX header to Qt models
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2017-04-29 13:32:55 -07:00

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