cgma
|
Go to the source code of this file.
Classes | |
class | CADeferredAttrib |
Functions | |
CubitAttrib * | CADeferredAttrib_creator (RefEntity *entity, const CubitSimpleAttrib &p_csa) |
CubitAttrib* CADeferredAttrib_creator | ( | RefEntity * | entity, |
const CubitSimpleAttrib & | p_csa | ||
) |
Definition at line 14 of file CADeferredAttrib.cpp.
{ CADeferredAttrib *new_attrib = NULL; // Deferred attributes are a special case -- they should only get created // when restoring from a file, in which case p_csa should be non-NULL if (!p_csa.isEmpty()) { new_attrib = new CADeferredAttrib(entity, p_csa); } return new_attrib; }