// $Header$ #ifndef MULTISTORAGE_HH #define MULTISTORAGE_HH #include #include "storage.hh" using namespace std; class multistorage { list stores; multistorage (multistorage const &); multistorage operator= (multistorage const &); public: multistorage (); ~ multistorage (); void add_storage (storage *); int num_storages () const; void store (char const * key, int value) const; void store (char const * key, double value) const; void store (char const * key, char const * value) const; }; #endif // ifndef MULTISTORAGE_HH