1 /* 2 * Copyright 2002-2008, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Michael Pfeiffer 7 */ 8 9 #include "PrinterDriver.h" 10 11 12 class PreviewDriver : public PrinterDriver { 13 public: 14 PreviewDriver(BNode* spoolDir); 15 ~PreviewDriver(); 16 17 virtual status_t PrintJob(BFile *jobFile, BMessage *jobMsg); 18 }; 19