Files
OpenSceneGraph/src/osgIntrospection/ConstructorInfo.cpp
2005-04-04 13:50:07 +00:00

16 lines
399 B
C++

#include <osgIntrospection/ConstructorInfo>
using namespace osgIntrospection;
void ConstructorInfo::getInheritedProviders(CustomAttributeProviderList &providers) const
{
for (int i=0; i<decltype_.getNumBaseTypes(); ++i)
{
const ConstructorInfo *ci = decltype_.getBaseType(i).getConstructor(params_);
if (ci)
{
providers.push_back(ci);
}
}
}