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