1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * SimpleConfigurator.hh
- *
- * Copyright 2001, Glen Scott. All rights reserved.
- *
- * See the COPYING file for the terms of usage and distribution.
- */
- #ifndef _LOG4CPP_SIMPLECONFIGURATOR_HH
- #define _LOG4CPP_SIMPLECONFIGURATOR_HH
- #include "Base/GCException.h"
- #include <log4cpp/Portability.hh>
- #include <iostream>
- #include <string>
- #include <log4cpp/Configurator.hh>
- LOG4CPP_NS_BEGIN
- /**
- * This class implements a simple configurator for log4cpp.
- * It is a temporary hack with an undocumented configuration format.
- * @deprecated As of version 0.3.2 log4cpp includes a log4j format
- * compatible PropertyConfigurator, removing the need for
- * SimpleConfigurator. This class will be removed in 0.4.0.
- **/
- class LOG4CPP_EXPORT SimpleConfigurator {
- public:
- /**
- * Configure log4cpp with the configuration in the given file.
- * NB. The configuration file format is undocumented and may change
- * without notice.
- * @since 0.2.6
- * @param initFileName name of the configuration file
- * @exception GenICam::InvalidArgumentException if the method encountered a read or
- * syntax error.
- **/
- static void configure(const std::string& initFileName);
- // throw(GenICam::InvalidArgumentException);
- /**
- * Configure log4cpp with the configuration in the given file.
- * NB. The configuration file format is undocumented and may change
- * without notice.
- * @since 0.3.1
- * @param initFile an input stream to the configuration file
- * @exception GenICam::InvalidArgumentException if the method encountered a read or
- * syntax error.
- **/
- static void configure(std::istream& initFile);
- // throw(GenICam::InvalidArgumentException);
- };
- LOG4CPP_NS_END
- #endif
|