mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 00:04:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			266 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			266 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef SCRAPPER_TABLEVIEW_H
 | |
| #define SCRAPPER_TABLEVIEW_H
 | |
| 
 | |
| #include <QTableView>
 | |
| 
 | |
| class ScraperTableView : public QTableView
 | |
| {
 | |
|     Q_OBJECT
 | |
| public:
 | |
|     explicit ScraperTableView(QWidget *parent = nullptr);
 | |
| 
 | |
| signals:
 | |
| 
 | |
| public slots:
 | |
| };
 | |
| 
 | |
| #endif // SCRAPPER_TABLEVIEW_H
 |