Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
includeLinks/GeomTSTT.hpp
Go to the documentation of this file.
1 /* *****************************************************************
2  MESQUITE -- The Mesh Quality Improvement Toolkit
3 
4  Copyright 2004 Lawrence Livermore National Laboratory. Under
5  the terms of Contract B545069 with the University of Wisconsin --
6  Madison, Lawrence Livermore National Laboratory retains certain
7  rights in this software.
8 
9  This library is free software; you can redistribute it and/or
10  modify it under the terms of the GNU Lesser General Public
11  License as published by the Free Software Foundation; either
12  version 2.1 of the License, or (at your option) any later version.
13 
14  This library is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  Lesser General Public License for more details.
18 
19  You should have received a copy of the GNU Lesser General Public License
20  (lgpl.txt) along with this library; if not, write to the Free Software
21  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 
23  kraftche@cae.wisc.edu
24 
25  ***************************************************************** */
33 #ifndef GEOM_TSTT_HPP
34 #define GEOM_TSTT_HPP
35 
36 #include "Mesquite.hpp"
37 #include "MeshInterface.hpp"
38 
39 namespace TSTTG {
40  class Geometry;
41 }
42 namespace TSTTR {
43  class Relate;
44 }
45 namespace TSTTM {
46  class Mesh;
47 }
48 
49 namespace Mesquite
50 {
51 
63  {
64  public:
65 
73  static GeomTSTT* create( TSTTG::Geometry& geom,
74  TSTTM::Mesh& mesh,
75  TSTTR::Relate& assoc,
76  MsqError& err );
77 
89  static GeomTSTT* create( TSTTG::Geometry& geom,
90  void* geom_ent_handle,
91  MsqError& err );
92 
93  virtual ~GeomTSTT();
94  };
95 }
96 
97 #endif
virtual ~GeomTSTT()
Definition: GeomTSTT.cpp:226
Used to hold the error state and return it to the application.
This file contains the Mesquite mesh interface. Many users will want to implement a concrete class de...
Class Mesh is the main class that holds all information to describe the current state of the mesh...
Definition: Mesh.hpp:19
static GeomTSTT * create(TSTTG::Geometry &geom, TSTTM::Mesh &mesh, TSTTR::Relate &assoc, MsqError &err)
Create MeshDommain from TSTT classification and geometry interfaces.
Definition: GeomTSTT.cpp:198
A base class describing a Mesquite::MeshDomain implemented on top of the TSTT geometry and classifica...