00001 #ifndef PRINTERFORMIMPL_H 00002 #define PRINTERFORMIMPL_H 00003 #include "printerform.h" 00004 #include <cups/cups.h> 00005 class PrinterFormImpl:public PrinterForm{ 00006 cups_dest_t *dest; 00007 cups_dest_t *dests; 00008 int num_dests; 00009 public: 00010 PrinterFormImpl(QWidget * parent ); 00011 cups_dest_t * getDest(); 00012 void accept(); 00013 }; 00014 #endif
1.3.6