mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
5372f12d8b
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
31 lines
543 B
C++
31 lines
543 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef COMPLETIONMODELS_H
|
|
#define COMPLETIONMODELS_H
|
|
|
|
#include <QStringListModel>
|
|
|
|
class BuddyCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
void updateModel();
|
|
};
|
|
|
|
class DiveMasterCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
void updateModel();
|
|
};
|
|
|
|
class SuitCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
void updateModel();
|
|
};
|
|
|
|
class TagCompletionModel : public QStringListModel {
|
|
Q_OBJECT
|
|
public:
|
|
void updateModel();
|
|
};
|
|
|
|
#endif // COMPLETIONMODELS_H
|