Skip to end of metadata
Go to start of metadata

void FB::JSAPIAuto::getMemberNames ( std::vector< std::string > &  nameVector  )  const [virtual]

Called by the browser to enumerate the members of this JSAPI object.

This must be implemented by anything extending JSAPI directly. JSAPIAuto implements this for you.

Parameters:
[out] nameVector The name vector.

Implements FB::JSAPI.

Definition at line 123 of file JSAPIAuto.cpp.

References FB::JSAPIImpl::getZone().

00124 {
00125     boost::recursive_mutex::scoped_lock lock(m_zoneMutex);
00126     nameVector.clear();
00127     for (ZoneMap::const_iterator it = m_zoneMap.begin(); it != m_zoneMap.end(); ++it) {
00128         if (getZone() >= it->second)
00129             nameVector.push_back(it->first);
00130     }
00131 }

Here is the call graph for this function:


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