#include <fillval.h>
Inheritance diagram for FillMappingSinAttribute:
Public Member Functions | |
FillMappingSinAttribute () | |
virtual NodeAttribute * | MakeNode () |
Make a AttrFillMappingSin node from this fill mapping attribute. |
Definition at line 1673 of file fillval.h.
|
Definition at line 1677 of file fillval.h. 01677 : FillMappingAttribute() {}
|
|
Make a AttrFillMappingSin node from this fill mapping attribute.
Reimplemented from AttributeValue. Definition at line 8101 of file fillval.cpp. 08102 { 08103 // Create new attribute node 08104 AttrFillMappingSin *pAttr = new AttrFillMappingSin(); 08105 if (pAttr==NULL) 08106 // error message has already been set by new 08107 return NULL; 08108 08109 // Copy attribute value into the new node. 08110 pAttr->Value.SimpleCopy(this); 08111 08112 // Return the new node 08113 return pAttr; 08114 }
|