00001 /* 00002 * Dibbler - a portable DHCPv6 00003 * 00004 * authors: Tomasz Mrugalski <thomson@klub.com.pl> 00005 * Marek Senderski <msend@o2.pl> 00006 * 00007 * released under GNU GPL v2 or later licence 00008 * 00009 * $Id: ClntParsGlobalOpt.h,v 1.4 2004/10/25 20:45:52 thomson Exp $ 00010 * 00011 * $Log: ClntParsGlobalOpt.h,v $ 00012 * Revision 1.4 2004/10/25 20:45:52 thomson 00013 * Option support, parsers rewritten. ClntIfaceMgr now handles options. 00014 * 00015 * Revision 1.3 2004/05/23 22:37:54 thomson 00016 * *** empty log message *** 00017 * 00018 * 00019 */ 00020 00021 #ifndef PARSGLOBALOPT_H 00022 #define PARSGLOBALOPT_H 00023 00024 #include "ClntParsIfaceOpt.h" 00025 00026 class TClntParsGlobalOpt : public TClntParsIfaceOpt 00027 { 00028 public: 00029 TClntParsGlobalOpt(); 00030 TClntParsGlobalOpt(TClntParsGlobalOpt *old); 00031 ~TClntParsGlobalOpt(); 00032 00033 void setWorkDir(string dir); 00034 string getWorkDir(); 00035 00036 private: 00037 string WorkDir; 00038 }; 00039 00040 #endif 00041