aboutsummaryrefslogblamecommitdiffstats
path: root/qt-models/completionmodels.h
blob: 24ba67e5f154fb8f14abd9e444cd2137409f0663 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   






                                                      




                                                           

                           

                                                     

                           

                                                    

                           
                            
// 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