00001 /* PrintersConf.h -*- c++ -*- 00002 * 00003 * Default destination (printer/class) 00004 * 00005 * Author: Petr Blahos <pblahos@suse.cz> 00006 * 00007 * $Id: DefaultDest.h,v 1.2 2004/01/16 17:55:03 jsrain Exp $ 00008 */ 00009 #ifndef _DefaultDest_H_ 00010 #define _DefaultDest_H_ 00011 00012 #include <string> 00013 #include <Y2.h> 00014 00015 class DefaultDest 00016 { 00017 public: 00018 DefaultDest() 00019 { 00020 } 00021 ~DefaultDest() 00022 { 00023 } 00024 YCPValue Read(); 00025 YCPBoolean Write(const YCPPath &path, const YCPValue& value, const YCPValue& arg); 00026 }; 00027 00028 #endif//_DefaultDest_H_