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: RelParsGlobalOpt.h,v 1.1 2005/01/11 22:53:35 thomson Exp $ 00010 * 00011 * $Log: RelParsGlobalOpt.h,v $ 00012 * Revision 1.1 2005/01/11 22:53:35 thomson 00013 * Relay skeleton implemented. 00014 * 00015 */ 00016 00017 #ifndef TRELPARSGLOBALOPT_H_ 00018 #define TRELPARSGLOBALOPT_H_ 00019 #include "RelParsIfaceOpt.h" 00020 00021 class TRelParsGlobalOpt : public TRelParsIfaceOpt 00022 { 00023 public: 00024 TRelParsGlobalOpt(void); 00025 ~TRelParsGlobalOpt(void); 00026 00027 string getWorkDir(); 00028 void setWorkDir(string dir); 00029 00030 private: 00031 string WorkDir; 00032 }; 00033 #endif 00034