Class NameEnumCallback

3DS Max Plug-In SDK

Class NameEnumCallback

See Also: Class Animatable, Class NameTab.

class NameEnumCallback

Description:

This class is the callback object passed to Interface::EnumAuxFiles() and to Animatable::EnumAuxFiles(). A developer derives a class from this class and implements the RecordName() method to store each name as it's passed to it. At the end of the EnumAuxFiles() processing, the table of names may be used. See Class NameTab for help storing the names.

Methods:

Prototype:

virtual void RecordName(TCHAR *name)=0;

Remarks:

Implemented by the Plug-In.

This method is used to record the name passed.

Parameters:

TCHAR *name

The name to store.