mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 01:58:35 +05:00
38 lines
893 B
C++
38 lines
893 B
C++
|
//=============================================================================
|
||
|
// File : SMESH_Quadrangle_2D_i.hxx
|
||
|
// Created : jeu mai 16 13:27:29 CEST 2002
|
||
|
// Author : Paul RASCLE, EDF
|
||
|
// Project : SALOME
|
||
|
// Copyright : EDF 2002
|
||
|
// $Header$
|
||
|
//=============================================================================
|
||
|
|
||
|
#ifndef _SMESH_QUADRANGLE_2D_I_HXX_
|
||
|
#define _SMESH_QUADRANGLE_2D_I_HXX_
|
||
|
|
||
|
#include <SALOMEconfig.h>
|
||
|
#include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
|
||
|
|
||
|
#include "SMESH_2D_Algo_i.hxx"
|
||
|
|
||
|
#include "SMESH_Quadrangle_2D.hxx"
|
||
|
|
||
|
class SMESH_Quadrangle_2D_i:
|
||
|
public POA_SMESH::SMESH_Quadrangle_2D,
|
||
|
public SMESH_2D_Algo_i
|
||
|
{
|
||
|
public:
|
||
|
SMESH_Quadrangle_2D_i(const char* anHyp,
|
||
|
int studyId,
|
||
|
::SMESH_Gen* genImpl);
|
||
|
|
||
|
virtual ~SMESH_Quadrangle_2D_i();
|
||
|
|
||
|
protected:
|
||
|
virtual void SetImpl(::SMESH_Quadrangle_2D* impl);
|
||
|
|
||
|
::SMESH_Quadrangle_2D* _impl;
|
||
|
};
|
||
|
|
||
|
#endif
|