Salome HOME
This commit was generated by cvs2git to create branch 'IMPORT'.
[modules/smesh.git] / src / SMESH / SMESH_3D_Algo.hxx
1 //=============================================================================
2 // File      : SMESH_3D_Algo.hxx
3 // Created   : sam mai 18 09:24:47 CEST 2002
4 // Author    : Paul RASCLE, EDF
5 // Project   : SALOME
6 // Copyright : EDF 2002
7 // $Header$
8 //=============================================================================
9
10 #ifndef _SMESH_3D_ALGO_HXX_
11 #define _SMESH_3D_ALGO_HXX_
12
13 #include "SMESH_Algo.hxx"
14
15 class SMESH_3D_Algo:
16   public SMESH_Algo
17 {
18 public:
19   SMESH_3D_Algo(int hypId, int studyId, SMESH_Gen* gen);
20   virtual ~SMESH_3D_Algo();
21
22   virtual ostream & SaveTo(ostream & save);
23   virtual istream & LoadFrom(istream & load);
24   friend ostream& operator << (ostream & save, SMESH_3D_Algo & hyp);
25   friend istream& operator >> (istream & load, SMESH_3D_Algo & hyp);
26
27 protected:
28 };
29
30 #endif