cgma
CADeferredAttrib.cpp File Reference
#include "CADeferredAttrib.hpp"
#include "CubitSimpleAttrib.hpp"
#include "ToolDataUser.hpp"
#include "TDUniqueId.hpp"
#include "CastTo.hpp"
#include "RefEntity.hpp"
#include "DLIList.hpp"
#include "CubitMessage.hpp"
#include <algorithm>

Go to the source code of this file.

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