node-pdfutils
PdfExportPageWorker.h
1 /*
2  * PdfExportPageWorker.h
3  * Copyright (C) 2014 tox <tox@rootkit>
4  *
5  * Distributed under terms of the MIT license.
6  */
7 
8 #ifndef PDFEXPORTPAGEWORKER_H
9 #define PDFEXPORTPAGEWORKER_H
10 
11 #include "PdfWorker.h"
12 
13 class PdfPageController;
14 class PdfExportPageWorker : public PdfWorker<PdfPageController> {
15  friend class PdfPageController;
16 public:
17  PdfExportPageWorker(PdfPageController *controller, NanCallback *callback)
18  : PdfWorker(controller, callback) {}
19 
20  void Execute();
21 
22  void HandleIntermediate(void *data);
23 
24  void HandleOKCallback ();
25 };
26 #endif /* !PDFEXPORTPAGEWORKER_H */
Class representation of a PDF-Page.
Definition: PdfPageController.h:23
Definition: PdfExportPageWorker.h:14
Base class for defining background processes.
Definition: PdfWorker.h:21