Changeset 150

Show
Ignore:
Timestamp:
08/21/08 16:28:09 (16 years ago)
Author:
mido
Message:
 
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • bdm/userinfo.h

    r149 r150  
    171171        } 
    172172 
     173        BindedAttribute nameAttribute; 
     174 
     175        BindedAttribute typeAttribute; 
     176 
    173177        const string userFriendlyTypeName; 
    174178public: 
     
    178182        UserInfo( const string& userFriendlyTypeName, const string& typeNameByRTTI ) 
    179183                : userFriendlyTypeName ( userFriendlyTypeName ), 
    180                 typeNameByRTTI( typeNameByRTTI ) 
     184                typeNameByRTTI( typeNameByRTTI ), 
     185                nameAttribute( "name"), 
     186                typeAttribute( "type") 
    181187        {        
    182188                userFriendlyNames2UI().insert( make_pair( userFriendlyTypeName, this ) ); 
  • tests/testUI.cpp

    r149 r150  
    2121}; 
    2222 
    23 const TypedUserInfo<int>* IntUI::pInstance = new IntUI(); 
     23const TypedUserInfo<int>* TypedUserInfo<int>::pInstance = new IntUI(); 
    2424 
    2525 
     
    4242}; 
    4343 
    44 const TypedUserInfo<string>* StringUI::pInstance = new StringUI(); 
     44const TypedUserInfo<string>* TypedUserInfo<string>::pInstance = new StringUI(); 
    4545 
    4646class Car 
     
    8383}; 
    8484 
    85 const TypedUserInfo<Car>* CarUI::pInstance = new CarUI( ); 
     85const TypedUserInfo<Car>* TypedUserInfo<Car>::pInstance = new CarUI( ); 
    8686 
    8787