Salome HOME
NRI : First integration.
[modules/smesh.git] / src / SMESH_I / SMESH_Regular_1D_i.hxx
diff --git a/src/SMESH_I/SMESH_Regular_1D_i.hxx b/src/SMESH_I/SMESH_Regular_1D_i.hxx
new file mode 100644 (file)
index 0000000..c8394ab
--- /dev/null
@@ -0,0 +1,37 @@
+//=============================================================================
+// File      : SMESH_Regular_1D_i.hxx
+// Created   : jeu mai 16 13:25:50 CEST 2002
+// Author    : Paul RASCLE, EDF
+// Project   : SALOME
+// Copyright : EDF 2002
+// $Header$
+//=============================================================================
+
+#ifndef _SMESH_REGULAR_1D_I_HXX_
+#define _SMESH_REGULAR_1D_I_HXX_
+
+#include <SALOMEconfig.h>
+#include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
+
+#include "SMESH_1D_Algo_i.hxx"
+
+#include "SMESH_Regular_1D.hxx"
+
+class SMESH_Regular_1D_i:
+  public POA_SMESH::SMESH_Regular_1D,
+  public SMESH_1D_Algo_i
+{
+public:
+  SMESH_Regular_1D_i(const char* anHyp,
+                    int studyId,
+                    ::SMESH_Gen* genImpl);
+
+  virtual ~SMESH_Regular_1D_i();
+protected:
+  virtual void SetImpl(::SMESH_Regular_1D* impl);
+
+  ::SMESH_Regular_1D* _impl;
+};
+
+#endif