mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-28 06:40:33 +05:00
19 lines
510 B
C++
19 lines
510 B
C++
|
#ifndef FILE_BASEGEOM
|
||
|
#define FILE_BASEGEOM
|
||
|
|
||
|
/**************************************************************************/
|
||
|
/* File: basegeom.hpp */
|
||
|
/* Author: Joachim Schoeberl */
|
||
|
/* Date: 23. Aug. 09 */
|
||
|
/**************************************************************************/
|
||
|
|
||
|
|
||
|
class NetgenGeometry
|
||
|
{
|
||
|
public:
|
||
|
virtual ~NetgenGeometry () { ; }
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|