netgen/libsrc/csg/manifold.hpp

30 lines
614 B
C++
Raw Normal View History

2014-01-09 15:19:48 +06:00
#ifndef FILE_MANIFOLD
#define FILE_MANIFOLD
/**************************************************************************/
/* File: manifold.hh */
/* Author: Joachim Schoeberl */
/* Date: 7. Aug. 96 */
/**************************************************************************/
namespace netgen
{
/**
Basis class for manifolds in 2d and 3d
*/
class Manifold
{
public:
///
Manifold ();
///
virtual ~Manifold ();
};
}
#endif