Salome HOME
e55611b5a8ab43d97f894f29568d33970ed46bd3
[modules/kernel.git] / src / DSC / DSC_User / uses_port.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : uses_port.hxx
24 //  Author : AndrĂ© RIBES (EDF)
25 //  Module : KERNEL
26 //
27 #ifndef _USES_PORT_HXX_
28 #define _USES_PORT_HXX_
29
30 #include "base_port.hxx"
31 #include "SALOME_Ports.hh"
32 #include "DSC_Engines.hh"
33
34 /*! \class uses_port
35  *  \brief This class implements a DSC_User uses C++ port.
36  *
37  *  This class is base class for all DSC_User uses port.
38  *  It's an abstract class.
39  *
40  *  Contrary to DSC_Basic layer, a uses port as an implementation
41  *  provided by this class which permits to manipulate the uses port.
42  */
43 class uses_port : public base_port
44 {
45   public :
46     uses_port();
47     virtual ~uses_port();
48
49     /*!
50      * This is used by the component to get the CORBA repository id
51      * of the uses port. It's an abstract method.
52      *
53      * \return port's CORBA repository id.
54      */
55     virtual const char * get_repository_id() = 0;
56
57     /*!
58      * This method is the uses port's callback to be aware of
59      * connections states.
60      * It's an abstract method. The uses port uses this method
61      * to manage the sequence of the DSC_Basic uses port.
62      *
63      * \param new_uses_port new uses port sequence.
64      * \param message message associated with this modification.
65      */
66     virtual void uses_port_changed(Engines::DSC::uses_port * new_uses_port,
67                                    const Engines::DSC::Message message) = 0;
68
69 };
70
71 #endif
72