ESyS-Particle
4.0.1
|
00001 00002 // // 00003 // Copyright (c) 2003-2011 by The University of Queensland // 00004 // Earth Systems Science Computational Centre (ESSCC) // 00005 // http://www.uq.edu.au/esscc // 00006 // // 00007 // Primary Business: Brisbane, Queensland, Australia // 00008 // Licensed under the Open Software License version 3.0 // 00009 // http://www.opensource.org/licenses/osl-3.0.php // 00010 // // 00012 00013 #ifndef __BMESH2DINTERACTION_H 00014 #define __BMESH2DINTERACTION_H 00015 00016 // --- STL includes --- 00017 #include <string> 00018 00019 using std::string; 00020 00021 // --- project includes --- 00022 #include "Model/BEdge2DInteraction.h" 00023 #include "Model/BCorner2DInteraction.h" 00024 #include "Model/BMesh2DIP.h" 00025 00026 struct BMesh2DInteraction 00027 { 00028 typedef BMesh2DIP ParameterType; 00029 typedef BEdge2DInteraction TriIntType; 00030 typedef BCorner2DInteraction CornerIntType; 00031 00032 static string getType(){return "BondedMesh2D";}; 00033 }; 00034 00035 #endif // __BMESH2DINTERACTION_H