#include <fillval.h>
Inheritance diagram for TranspFillMappingSinAttribute:
Public Member Functions | |
TranspFillMappingSinAttribute () | |
virtual FillMappingAttribute * | MakeSimilarNonTranspFillMapping (void) |
virtual NodeAttribute * | MakeNode () |
Make a AttrFillMappingSin node from this fill mapping attribute. |
Definition at line 1837 of file fillval.h.
|
Definition at line 1841 of file fillval.h. 01841 : TranspFillMappingAttribute() {}
|
|
Make a AttrFillMappingSin node from this fill mapping attribute.
Reimplemented from AttributeValue. Definition at line 8552 of file fillval.cpp. 08553 { 08554 // Create new attribute node 08555 AttrTranspFillMappingSin *pAttr = new AttrTranspFillMappingSin(); 08556 if (pAttr==NULL) 08557 // error message has already been set by new 08558 return NULL; 08559 08560 // Copy attribute value into the new node. 08561 pAttr->Value.SimpleCopy(this); 08562 08563 // Return the new node 08564 return pAttr; 08565 }
|
|
Reimplemented from TranspFillMappingAttribute. Definition at line 8489 of file fillval.cpp. 08490 { 08491 FillMappingSinAttribute *pNewAttr = new FillMappingSinAttribute; 08492 if (pNewAttr != NULL) 08493 { 08494 pNewAttr->Repeat = Repeat; 08495 } 08496 08497 return pNewAttr; 08498 }
|