#include <fillval.h>
Inheritance diagram for FillEffectRainbowAttribute:
Public Member Functions | |
virtual NodeAttribute * | MakeNode () |
Make a AttrFillEffectRainbow node from this fill effect attribute. |
Definition at line 1741 of file fillval.h.
|
Make a AttrFillEffectRainbow node from this fill effect attribute.
Reimplemented from AttributeValue. Definition at line 8295 of file fillval.cpp. 08296 { 08297 // Create new attribute node 08298 AttrFillEffectRainbow *pAttr = new AttrFillEffectRainbow(); 08299 if (pAttr==NULL) 08300 // error message has already been set by new 08301 return NULL; 08302 08303 // Copy attribute value into the new node. 08304 pAttr->Value.SimpleCopy(this); 08305 08306 // Return the new node 08307 return pAttr; 08308 }
|