#include <attraggl.h>
Inheritance diagram for UserAttributeAgglomerator:
Protected Member Functions | |
virtual AttributeIdentifier | GetAttributeType (NodeAttribute *const pAttrib) const |
Provides a key for the given NodeAttribute that distinguishes the attribute from other other than by the runtime class. | |
Private Member Functions | |
CC_DECLARE_MEMDUMP (UserAttributeAgglomerator) |
Definition at line 290 of file attraggl.h.
|
|
|
Provides a key for the given NodeAttribute that distinguishes the attribute from other other than by the runtime class.
Implements AttributeAgglomerator. Definition at line 727 of file attraggl.cpp. 00728 { 00729 ERROR2IF(pAttrib == NULL, NullString, "NULL Args"); 00730 00731 AttributeIdentifier AttrID = pAttrib->GetAttributeClassID(); // return this 00732 00733 return AttrID; 00734 }
|