mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 08:56:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			347 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			347 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef ADDPROPERTYDIALOG_H
 | |
| #define ADDPROPERTYDIALOG_H
 | |
| 
 | |
| #include <QDialog>
 | |
| 
 | |
| namespace Ui {
 | |
| class AddPropertyDialog;
 | |
| }
 | |
| 
 | |
| class AddPropertyDialog : public QDialog
 | |
| {
 | |
|     Q_OBJECT
 | |
|     
 | |
| public:
 | |
|     explicit AddPropertyDialog(QWidget *parent = 0);
 | |
|     ~AddPropertyDialog();
 | |
|     
 | |
| private:
 | |
|     Ui::AddPropertyDialog *ui;
 | |
| };
 | |
| 
 | |
| #endif // ADDPROPERTYDIALOG_H
 |