FbxNameFilter Class Reference
 
 
 
FbxNameFilter Class Reference

This reference page is linked to from the following overview topics: List of Python Fbx classes.


#include <fbxobjectfilter.h>


Class Description

This class represents a name filter on an object.

Definition at line 45 of file fbxobjectfilter.h.

Inheritance diagram for FbxNameFilter:
FbxObjectFilter

List of all members.

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.

Constructor & Destructor Documentation

FbxNameFilter ( const char *  pTargetName ) [inline]

Constructor.

Parameters:
pTargetName The target name.

Definition at line 55 of file fbxobjectfilter.h.

: mTargetName( pTargetName ) {};
virtual ~FbxNameFilter ( ) [inline, virtual]

Destructor.

Definition at line 58 of file fbxobjectfilter.h.

{}

Member Function Documentation

virtual bool Match ( const FbxObject pObjectPtr ) const [inline, virtual]

Tells if this filter match the given object.

Parameters:
pObjectPtr The given object.

Implements FbxObjectFilter.

Definition at line 64 of file fbxobjectfilter.h.

{ return pObjectPtr ? mTargetName == pObjectPtr->GetName() : false; }

The documentation for this class was generated from the following file: