#include <fillval.h>
Inheritance diagram for FillMappingLinearAttribute:
Public Member Functions | |
FillMappingLinearAttribute () | |
virtual NodeAttribute * | MakeNode () |
Make a AttrFillMappingLinear node from this fill mapping attribute. |
Definition at line 1651 of file fillval.h.
|
Definition at line 1655 of file fillval.h. 01655 : FillMappingAttribute() {}
|
|
Make a AttrFillMappingLinear node from this fill mapping attribute.
Reimplemented from AttributeValue. Definition at line 8072 of file fillval.cpp. 08073 { 08074 // Create new attribute node 08075 AttrFillMappingLinear *pAttr = new AttrFillMappingLinear(); 08076 if (pAttr==NULL) 08077 // error message has already been set by new 08078 return NULL; 08079 08080 // Copy attribute value into the new node. 08081 pAttr->Value.SimpleCopy(this); 08082 08083 // Return the new node 08084 return pAttr; 08085 }
|