#if defined (FBXSDK_ENV_MAC)
#pragma GCC diagnostic ignored "-Wformat-security"
#endif
void DisplayHierarchy(
FbxNode* pNode,
int pDepth);
{
int i;
{
DisplayHierarchy(lRootNode->
GetChild(i), 0);
}
}
void DisplayHierarchy(
FbxNode* pNode,
int pDepth)
{
int i;
for(i = 0; i < pDepth; i++)
{
lString += " ";
}
lString += "\n";
FBXSDK_printf(lString.
Buffer());
{
DisplayHierarchy(pNode->
GetChild(i), pDepth + 1);
}
}