This reference page is linked to from the following overview topics: List of Python Fbx classes.
#include <fbxobjectfilter.h>
This class represents a name filter on an object.
Definition at line 45 of file fbxobjectfilter.h.
Public Member Functions |
|
| virtual bool | Match (const FbxObject *pObjectPtr) const |
| Tells if this filter match the given object.
|
|
Constructor and Destructor |
|
| FbxNameFilter (const char *pTargetName) | |
| Constructor. |
|
| virtual | ~FbxNameFilter () |
| Destructor. |
|
| FbxNameFilter | ( | const char * | pTargetName | ) | [inline] |
Constructor.
| pTargetName | The target name. |
Definition at line 55 of file fbxobjectfilter.h.
: mTargetName( pTargetName ) {};
| virtual ~FbxNameFilter | ( | ) | [inline, virtual] |
| virtual bool Match | ( | const FbxObject * | pObjectPtr | ) | const [inline, virtual] |
Tells if this filter match the given object.
| pObjectPtr | The given object. |
Implements FbxObjectFilter.
Definition at line 64 of file fbxobjectfilter.h.
{ return pObjectPtr ? mTargetName == pObjectPtr->GetName() : false; }