Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
XmlUtil.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // For more information, please see: http://www.nektar.info
4 //
5 // The MIT License
6 //
7 // Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
8 // Department of Aeronautics, Imperial College London (UK), and Scientific
9 // Computing and Imaging Institute, University of Utah (USA).
10 //
11 // License for the specific language governing rights and limitations under
12 // Permission is hereby granted, free of charge, to any person obtaining a
13 // copy of this software and associated documentation files (the "Software"),
14 // to deal in the Software without restriction, including without limitation
15 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 // and/or sell copies of the Software, and to permit persons to whom the
17 // Software is furnished to do so, subject to the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be included
20 // in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 // DEALINGS IN THE SOFTWARE.
29 //
30 ///////////////////////////////////////////////////////////////////////////////
31 
33 
34 namespace Nektar
35 {
36  const char* XmlUtil::NEKTAR_ELEMENT_NAME = "NEKTAR";
37  const char* XmlUtil::GEOMETRY_ELEMENT_NAME = "GEOMETRY";
38  const char* XmlUtil::DIM_GEOMETRY_ATTRIBUTE = "DIM";
39  const char* XmlUtil::SPACE_GEOMETRY_ATTRIBUTE = "SPACE";
40  const char* XmlUtil::VERTEX_ELEMENT_NAME = "VERTEX";
41  const char* XmlUtil::V_ELEMENT_NAME = "V";
42  const char* XmlUtil::ID_VERTEX_ATTRIBUTE_NAME = "ID";
43  const char* XmlUtil::EDGE_ELEMENT_NAME = "EDGE";
44  const char* XmlUtil::E_ELEMENT_NAME = "E";
45  const char* XmlUtil::CURVED_ELEMENT_NAME = "CURVED";
46  const char* XmlUtil::FACE_ELEMENT_NAME = "FACE";
47  const char* XmlUtil::COMPOSITE_ELEMENT_NAME = "COMPOSITE";
48  const char* XmlUtil::C_ELEMENT_NAME = "C";
49  const char* XmlUtil::DOMAIN_ELEMENT_NAME = "DOMAIN";
50  const char* XmlUtil::ELEMENT_ELEMENT_NAME = "ELEMENT";
51  const char* XmlUtil::S_ELEMENT_NAME = "S";
52  const char* XmlUtil::T_ELEMENT_NAME = "T";
53  const char* XmlUtil::Q_ELEMENT_NAME = "Q";
54  const char* XmlUtil::A_ELEMENT_NAME = "A";
55  const char* XmlUtil::P_ELEMENT_NAME = "P";
56  const char* XmlUtil::R_ELEMENT_NAME = "R";
57  const char* XmlUtil::H_ELEMENT_NAME = "H";
58  const char* XmlUtil::PARAMETERS_ELEMENT_NAME = "PARAMETERS";
59  const char* XmlUtil::SOLVERINFO_ELEMENT_NAME = "SOLVERINFO";
60  const char* XmlUtil::VARIABLES_ELEMENT_NAME = "VARIABLES";
61  const char* XmlUtil::BOUNDARYCONDITIONS_ELEMENT_NAME = "BOUNDARYCONDITIONS";
62 }
63 
64