14 línte
		
	
	
		
			245 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 línte
		
	
	
		
			245 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef PDFPROCESSOR_H
 | |
| #define PDFPROCESSOR_H
 | |
| #include "processor.h"
 | |
| class PdfProcessor : public Processor
 | |
| {
 | |
| public:
 | |
|     PdfProcessor();
 | |
| 
 | |
| public:
 | |
|     QVector<PageData> process(const QByteArray &data) const override;
 | |
| };
 | |
| 
 | |
| #endif // PDFPROCESSOR_H
 |