1
0
mirror of https://github.com/NGSolve/netgen.git synced 2025-04-09 06:47:28 +05:00

24 lines
677 B
C++
Raw Normal View History

2009-08-24 00:03:40 +00:00
#ifndef FILE_BASEGEOM
#define FILE_BASEGEOM
/**************************************************************************/
/* File: basegeom.hpp */
/* Author: Joachim Schoeberl */
/* Date: 23. Aug. 09 */
/**************************************************************************/
class NetgenGeometry
{
public:
virtual ~NetgenGeometry () { ; }
2009-08-25 14:00:20 +00:00
virtual int GenerateMesh (Mesh*& mesh,
int perfstepsstart, int perfstepsend, char* optstring) = 0;
virtual const Refinement & GetRefinement () const = 0;
2009-08-24 00:03:40 +00:00
};
#endif