mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-08 02:26:16 +00:00
34 lines
665 B
C++
34 lines
665 B
C++
#ifndef COMPLETIONMODELS_H
|
|
#define COMPLETIONMODELS_H
|
|
|
|
#include <QStringListModel>
|
|
|
|
class BuddyCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
static BuddyCompletionModel* instance();
|
|
void updateModel();
|
|
};
|
|
|
|
class DiveMasterCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
static DiveMasterCompletionModel* instance();
|
|
void updateModel();
|
|
};
|
|
|
|
class LocationCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
static LocationCompletionModel* instance();
|
|
void updateModel();
|
|
};
|
|
|
|
class SuitCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
static SuitCompletionModel* instance();
|
|
void updateModel();
|
|
};
|
|
|
|
#endif
|