Skip to end of metadata
Go to start of metadata

void FB::JSAPIAuto::unregisterProperty ( const std::string &  name  )  [virtual]

Unregisters a property that has been exposed to javascript.

This is the opposite of registerProperty

Parameters:
name The name that the method will have when accessed from javascript.
See also:
registerProperty
Since:
1.4b4

Definition at line 114 of file JSAPIAuto.cpp.

00115 {
00116     FB::PropertyFunctorsMap::iterator fnd = m_propertyFunctorsMap.find(name);
00117     if (fnd != m_propertyFunctorsMap.end()) {
00118         m_propertyFunctorsMap.erase(name);
00119         m_zoneMap.erase(name);
00120     }
00121 }


Generated on 18 Jun 2013 for FireBreath by  doxygen 1.6.1
Labels
  • None