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.2 2005/07/16 14:46:32 thomson Exp $ 00010 * 00011 * $Log: RelParsGlobalOpt.h,v $ 00012 * Revision 1.2 2005/07/16 14:46:32 thomson 00013 * Compatilibility with gcc 2.95 improved (bug #119) 00014 * Fix was provided by Tomasz Torcz. Thanks. 00015 * 00016 * Revision 1.1 2005/01/11 22:53:35 thomson 00017 * Relay skeleton implemented. 00018 * 00019 */ 00020 00021 #ifndef TRELPARSGLOBALOPT_H_ 00022 #define TRELPARSGLOBALOPT_H_ 00023 #include "RelParsIfaceOpt.h" 00024 #include <string> 00025 00026 class TRelParsGlobalOpt : public TRelParsIfaceOpt 00027 { 00028 public: 00029 TRelParsGlobalOpt(void); 00030 ~TRelParsGlobalOpt(void); 00031 00032 string getWorkDir(); 00033 void setWorkDir(string dir); 00034 00035 private: 00036 string WorkDir; 00037 }; 00038 #endif 00039