You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			443 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			31 lines
		
	
	
		
			443 B
		
	
	
	
		
			C++
		
	
| #ifndef USERFORM_H
 | |
| #define USERFORM_H
 | |
| 
 | |
| #include <QWidget>
 | |
| #include "autoform.h"
 | |
| #include "../data/core-data.h"
 | |
| #include "core-odb.hxx"
 | |
| 
 | |
| namespace Ui {
 | |
| class UserForm;
 | |
| }
 | |
| 
 | |
| class UserForm : public AutoForm<User>
 | |
| {
 | |
|     Q_OBJECT
 | |
| 
 | |
| public:
 | |
|     explicit UserForm(QWidget *parent = 0);
 | |
|     ~UserForm();
 | |
| 
 | |
| private:
 | |
|     Ui::UserForm *ui;
 | |
| 
 | |
|     // AutoForm interface
 | |
| protected:
 | |
|     void bindOtherToUi();
 | |
|     bool bindOtherToData();
 | |
| };
 | |
| 
 | |
| #endif // USERFORM_H
 |