|
Sierra Toolkit
Version of the Day
|
00001 /*------------------------------------------------------------------------*/ 00002 /* Copyright 2010 Sandia Corporation. */ 00003 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */ 00004 /* license for use of this work by or on behalf of the U.S. Government. */ 00005 /* Export of this program may require a license from the */ 00006 /* United States Government. */ 00007 /*------------------------------------------------------------------------*/ 00008 00013 #include <stk_mesh/fem/TopologyDimensions.hpp> 00014 00015 namespace stk_classic { 00016 namespace mesh { 00017 00018 const char * ElementNode::name() const 00019 { static const char n[] = "ElementNode" ; return n ; } 00020 00021 const ElementNode & ElementNode::tag() 00022 { static const ElementNode self ; return self ; } 00023 00024 const char * QuadratureTag::name() const 00025 { static const char n[] = "Quadrature" ; return n ; } 00026 00027 const QuadratureTag & QuadratureTag::tag() 00028 { static const QuadratureTag self ; return self ; } 00029 00030 const char * BasisTag::name() const 00031 { static const char n[] = "Basis" ; return n ; } 00032 00033 const BasisTag & BasisTag::tag() 00034 { static const BasisTag self ; return self ; } 00035 00036 } // namespace mesh 00037 } // namespace stk_classic 00038