Changeset 821
- Timestamp:
- 02/23/10 10:17:00 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/base/user_info.h
r795 r821 385 385 template<class T> static void from_setting ( T &variable_to_load, const Setting &element ) { 386 386 std::string msg = "UIException: from_setting is not implemented for type "; 387 // try{ 388 variable_to_load.from_setting(element); 389 /* } catch (...){ 387 390 msg += typeid ( T ).name(); 388 391 msg += '.'; 389 392 throw UISettingException ( msg, element ); 393 }*/ 390 394 } 391 395