00001 /* 00002 * Copyright: (C) 1999-2001 Bruce W. Forsberg 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 * 00018 * Bruce Forsberg forsberg@tns.net 00019 * 00020 */ 00021 00022 #ifndef _AFLIBENVFILE_H_ 00023 #define _AFLIBENVFILE_H_ 00024 00025 00026 #ifdef HAVE_CONFIG_H 00027 #include <config.h> 00028 #endif 00029 00049 #include <string> 00050 00051 using std::string; 00052 00053 class aflibEnvFile { 00054 00055 public: 00056 00057 aflibEnvFile( 00058 char * env_file, 00059 char * env_dir = NULL); 00060 00061 aflibEnvFile(); 00062 00063 ~aflibEnvFile(); 00064 00065 bool 00066 readValueFromFile( 00067 string& key_str, 00068 string& results); 00069 00070 void 00071 writeValueToFile( 00072 string& key_str, 00073 string& value); 00074 00075 00076 private: 00077 00078 string _env_file; 00079 00080 }; 00081 00082 00083 #endif