1#ifndef FILE_MANIFOLD 2#define FILE_MANIFOLD 3 4/**************************************************************************/ 5/* File: manifold.hh */ 6/* Author: Joachim Schoeberl */ 7/* Date: 7. Aug. 96 */ 8/**************************************************************************/ 9 10/** 11 Basis class for manifolds in 2d and 3d 12*/ 13class Manifold 14{ 15public: 16 /// 17 Manifold (); 18 /// 19 virtual ~Manifold (); 20}; 21 22#endif 23 24