mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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
 |