Salome HOME
First publish of HEXABLOCKcomponant
[modules/hexablock.git] / src / HEXABLOCK_I / HexVector_impl.hxx
1 #ifndef __HexVector_impl__
2 #define __HexVector_impl__
3
4 #include <SALOMEconfig.h>
5 #include CORBA_SERVER_HEADER(Vector)
6 #include "SALOME_GenericObj_i.hh"
7
8 #include "hexa_base.hxx"
9 #include "HexVector.hxx"
10
11 using namespace HEXABLOCK_ORB;
12
13 class Vector_impl : public POA_HEXABLOCK_ORB::Vector,
14                     public SALOME::GenericObj_i
15 {
16   public:
17     Vector_impl(HEXA_NS::Vector *ptrCpp);
18     HEXA_NS::Vector* GetImpl() throw (SALOME::SALOME_Exception);
19
20     ::CORBA::Double getDX() throw(SALOME::SALOME_Exception);
21     ::CORBA::Double getDY() throw(SALOME::SALOME_Exception);
22     ::CORBA::Double getDZ() throw(SALOME::SALOME_Exception);
23    void dump() throw (SALOME::SALOME_Exception);
24    void printName() throw (SALOME::SALOME_Exception);
25   private:
26     HEXA_NS::Vector *_vector_cpp;
27
28 };
29
30 #endif