added constructor with istream

This commit is contained in:
darkeye 2000-11-09 22:07:19 +00:00
parent 00b2c26cc8
commit fbaf268435
1 changed files with 12 additions and 2 deletions

View File

@ -92,13 +92,20 @@ class Config : public virtual Referable
public: public:
inline inline
Config ( void ) throw ( Exception ) Config ( void ) throw ( Exception )
{ {
} }
inline
Config ( istream & is ) throw ( Exception )
{
read( is );
}
inline virtual inline virtual
~Config ( void ) throw ( Exception ) ~Config ( void ) throw ( Exception )
{ {
} }
@ -153,6 +160,9 @@ class Config : public virtual Referable
$Source$ $Source$
$Log$ $Log$
Revision 1.2 2000/11/09 22:07:19 darkeye
added constructor with istream
Revision 1.1 2000/11/08 17:29:50 darkeye Revision 1.1 2000/11/08 17:29:50 darkeye
added configuration file reader added configuration file reader