#include <fillval.h>
Inheritance diagram for TranspFillMappingLinearAttribute:
Public Member Functions | |
TranspFillMappingLinearAttribute () | |
virtual FillMappingAttribute * | MakeSimilarNonTranspFillMapping (void) |
virtual NodeAttribute * | MakeNode () |
Make a AttrFillMappingLinear node from this fill mapping attribute. |
Definition at line 1813 of file fillval.h.
|
Definition at line 1817 of file fillval.h. 01817 : TranspFillMappingAttribute() {}
|
|
Make a AttrFillMappingLinear node from this fill mapping attribute.
Reimplemented from AttributeValue. Definition at line 8524 of file fillval.cpp. 08525 { 08526 // Create new attribute node 08527 AttrTranspFillMappingLinear *pAttr = new AttrTranspFillMappingLinear(); 08528 if (pAttr==NULL) 08529 // error message has already been set by new 08530 return NULL; 08531 08532 // Copy attribute value into the new node. 08533 pAttr->Value.SimpleCopy(this); 08534 08535 // Return the new node 08536 return pAttr; 08537 }
|
|
Reimplemented from TranspFillMappingAttribute. Definition at line 8500 of file fillval.cpp. 08501 { 08502 FillMappingLinearAttribute *pNewAttr = new FillMappingLinearAttribute; 08503 if (pNewAttr != NULL) 08504 { 08505 pNewAttr->Repeat = Repeat; 08506 } 08507 08508 return pNewAttr; 08509 }
|