Changeset 364 for bdm/user_info.h

Show
Ignore:
Timestamp:
06/08/09 18:00:49 (15 years ago)
Author:
smidl
Message:

compile fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/user_info.h

    r363 r364  
    1818#ifndef BDMLIB  
    1919#define UIREGISTER(class_name) template<> const Particular_UI<class_name>& Particular_UI<class_name>::ui = Particular_UI<class_name>(#class_name)  
     20#warning BDMLIB-defined 
    2021#else 
    2122#define UIREGISTER(class_name) 
     23#warning BDMLIB-empty 
    2224#endif 
    2325 
     
    326328        //! default constructor, which is intentionally declared as private 
    327329        Particular_UI<T>( const string &class_name) : UI( class_name, &typeid(T) )  
    328         {        
     330        {       cout << class_name << endl; 
    329331        }; 
    330332