Changeset 912
- Timestamp:
- 04/21/10 11:45:41 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/base/bdmbase.h
r910 r912 467 467 //! (it would not be straightforward, though, still there are some enums which had to be converted into integers but it could be done without loosing type control) 468 468 //! This way, it would not be necessary to declare log_level_intermediate<T> class and we could declare log_level_template<T> 469 //! before the log _level class itself with a mere foroward declaration of log_level. In our case, however, touching of registered_logger->log_setting469 //! before the logger class itself with a mere foroward declaration of logger. In our case, however, touching of registered_logger->log_setting 470 470 //! implies that friend declaration is not enough and we are lost in a circle. And just by cutting this circle we obtains log_level_intermediate<T> class. 471 471 //! Howg.)