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