$extrastylesheet
00001 // The libMesh Finite Element Library. 00002 // Copyright (C) 2002-2014 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner 00003 00004 // This library is free software; you can redistribute it and/or 00005 // modify it under the terms of the GNU Lesser General Public 00006 // License as published by the Free Software Foundation; either 00007 // version 2.1 of the License, or (at your option) any later version. 00008 00009 // This library is distributed in the hope that it will be useful, 00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 // Lesser General Public License for more details. 00013 00014 // You should have received a copy of the GNU Lesser General Public 00015 // License along with this library; if not, write to the Free Software 00016 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 00018 00019 00020 #ifndef LIBMESH_ENUM_ORDER_H 00021 #define LIBMESH_ENUM_ORDER_H 00022 00023 // ------------------------------------------------------------ 00024 // enum Order definition 00025 namespace libMesh { 00026 00032 enum Order {CONSTANT = 0, 00033 FIRST = 1, 00034 SECOND = 2, 00035 THIRD = 3, 00036 FOURTH = 4, 00037 FIFTH = 5, 00038 SIXTH = 6, 00039 SEVENTH = 7, 00040 EIGHTH = 8, 00041 NINTH = 9, 00042 TENTH = 10, 00043 00044 ELEVENTH = 11, 00045 TWELFTH = 12, 00046 THIRTEENTH = 13, 00047 FOURTEENTH = 14, 00048 FIFTEENTH = 15, 00049 SIXTEENTH = 16, 00050 SEVENTEENTH = 17, 00051 EIGHTTEENTH = 18, 00052 NINTEENTH = 19, // deprecated 00053 NINETEENTH = 19, 00054 TWENTIETH = 20, 00055 00056 TWENTYFIRST = 21, 00057 TWENTYSECOND = 22, 00058 TWENTYTHIRD = 23, 00059 TWENTYFOURTH = 24, 00060 TWENTYFIFTH = 25, 00061 TWENTYSIXTH = 26, 00062 TWENTYSEVENTH = 27, 00063 TWENTYEIGHTH = 28, 00064 TWENTYNINTH = 29, 00065 THIRTIETH = 30, 00066 00067 THIRTYFIRST = 31, 00068 THIRTYSECOND = 32, 00069 THIRTYTHIRD = 33, 00070 THIRTYFOURTH = 34, 00071 THIRTYFIFTH = 35, 00072 THIRTYSIXTH = 36, 00073 THIRTYSEVENTH = 37, 00074 THIRTYEIGHTH = 38, 00075 THIRTYNINTH = 39, 00076 FORTIETH = 40, 00077 00078 FORTYFIRST = 41, 00079 FORTYSECOND = 42, 00080 FORTYTHIRD = 43, 00081 00082 INVALID_ORDER}; 00083 00084 } 00085 00086 #endif // LIBMESH_ENUM_ORDER_H