cgma
CADeferredAttrib.hpp File Reference
#include "CubitAttrib.hpp"
#include <vector>
#include "CADefines.hpp"

Go to the source code of this file.

Classes

class  CADeferredAttrib

Functions

CubitAttribCADeferredAttrib_creator (RefEntity *entity, const CubitSimpleAttrib &p_csa)

Function Documentation

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;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines