ESYS13  Revision_
ElementType.h
Go to the documentation of this file.
00001 
00002 /*******************************************************
00003 *
00004 * Copyright (c) 2010-2012 by University of Queensland
00005 * Earth Systems Science Computational Center (ESSCC)
00006 * http://www.uq.edu.au/esscc
00007 *
00008 * Primary Business: Queensland, Australia
00009 * Licensed under the Open Software License version 3.0
00010 * http://www.opensource.org/licenses/osl-3.0.php
00011 *
00012 *******************************************************/
00013 
00014 #ifndef DUDLEY_TYPEID_H
00015 #define DUDLEY_TYPEID_H
00016 
00017 typedef enum {
00018     Dudley_Point1 = 0,
00019     Dudley_Line2 = 1,
00020     Dudley_Tri3 = 2,
00021     Dudley_Tet4 = 3,
00022     Dudley_Line2Face = 4,
00023     Dudley_Tri3Face = 5,
00024     Dudley_Tet4Face = 6,
00025     Dudley_NoRef = 7            /* marks end of list */
00026 } Dudley_ElementTypeId;
00027 
00028 Dudley_ElementTypeId eltTypeFromString(const char *s);
00029 #endif