/****************************************************************************** * swconfig.h - definition of Class SWConfig used for saving and retrieval * of configuration information * * $Id: swconfig.h,v 1.2 1999/06/02 06:58:04 scribe Exp $ * * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org) * CrossWire Bible Society * P. O. Box 2528 * Tempe, AZ 85280-2528 * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation version 2. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * */ #ifndef SWCONFIG_H #define SWCONFIG_H #include #include #include using namespace std; typedef multimap > ConfigEntMap; typedef map > SectionMap; class SWConfig { private: char getline(FILE *fp, string &line); public: string filename; SectionMap Sections; SWConfig(const char *ifilename); virtual ~SWConfig(); virtual void Load(); virtual void Save(); virtual SWConfig &operator +=(SWConfig &addFrom); }; #endif