This reference page is linked to from the following overview topics: List of Python Fbx classes.
#include <fbxobjectfilter.h>
This object represents a filter criteria on an object.
Definition at line 25 of file fbxobjectfilter.h.
Public Member Functions |
|
| virtual | ~FbxObjectFilter () |
| Destructor. |
|
| virtual bool | Match (const FbxObject *pObjectPtr) const =0 |
| Tells if this filter match the given object.
|
|
| virtual bool | NotMatch (const FbxObject *pObjectPtr) const |
| Tells if this filter does NOT match the
given object. |
|
| virtual ~FbxObjectFilter | ( | ) | [inline, virtual] |
| virtual bool Match | ( | const FbxObject * | pObjectPtr | ) | const [pure virtual] |
Tells if this filter match the given object.
| pObjectPtr | The given object. |
Implemented in FbxNameFilter, and FbxImplementationFilter.
| virtual bool NotMatch | ( | const FbxObject * | pObjectPtr | ) | const [inline, virtual] |
Tells if this filter does NOT match the given object.
| pObjectPtr | The given object. |
Definition at line 39 of file fbxobjectfilter.h.
{ return !Match(pObjectPtr); };