1 /* 2 * Copyright 2010, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Ithamar R. Adema <ithamar.adema@team-embedded.nl> 7 * Michael Pfeiffer 8 */ 9 #ifndef GP_DATA_H 10 #define GP_DATA_H 11 12 13 #include "PrinterData.h" 14 15 #include <String.h> 16 17 18 class BNode; 19 20 21 class GPData : public PrinterData { 22 public: 23 GPData(BNode* node) 24 : 25 PrinterData(node) 26 { 27 } 28 29 // PrinterData overrides 30 virtual void Load(); 31 virtual void Save(); 32 33 BString fGutenprintDriverName; 34 }; 35 36 #endif // PSDATA_H 37