#include <fbxbindingoperator.h>
The concrete factory class for binding function.
Definition at line 235 of file fbxbindingoperator.h.
Public Member Functions |
|
| virtual const char * | GetFunctionName () const |
| Get Name of the operation function. |
|
| virtual Function * | CreateFunction () const |
| Create the operation function. |
|
| virtual const char* GetFunctionName | ( | ) | const [inline, virtual] |
Get Name of the operation function.
Implements FbxBindingOperator::FunctionCreatorBase.
Definition at line 242 of file fbxbindingoperator.h.
{
return FUNCTION::FunctionName;
}
| virtual Function* CreateFunction | ( | ) | const [inline, virtual] |
Create the operation function.
Implements FbxBindingOperator::FunctionCreatorBase.
Definition at line 249 of file fbxbindingoperator.h.
{
return FbxNew< FUNCTION >();
}