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 00044 #include <string> 00045 00046 #if __GNUC__ >= 3 00047 using std::string; 00048 #endif 00049 00050 class aflibEnvFile { 00051 00052 public: 00053 00054 aflibEnvFile( 00055 char * env_file, 00056 char * env_dir = NULL); 00057 00058 aflibEnvFile(); 00059 00060 ~aflibEnvFile(); 00061 00062 bool 00063 readValueFromFile( 00064 string& key_str, 00065 string& results); 00066 00067 void 00068 writeValueToFile( 00069 string& key_str, 00070 string& value); 00071 00072 00073 private: 00074 00075 string _env_file; 00076 00077 }; 00078 00079 00080 #endif