Salome HOME
A patch from Paul RASCLE for: kernel documentation with doxygen, modification on...
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeGraphic_i.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDS_AttributeFlags_i.hxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23 //  $Header:
24
25 #ifndef SALOMEDS_AttributeGraphic_i_HeaderFile
26 #define SALOMEDS_AttributeGraphic_i_HeaderFile
27
28 // IDL headers
29
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
33
34 #include "SALOMEDS_GenericAttribute_i.hxx"
35 #include "SALOMEDSImpl_AttributeGraphic.hxx"
36
37 /*
38   Class       : SALOMEDS_AttributeGraphic_i
39   Description : This class is intended for storing information about
40                 graphic representation of objects in dirrent views
41 */
42
43 class SALOMEDS_AttributeGraphic_i: public virtual POA_SALOMEDS::AttributeGraphic,
44                                    public virtual SALOMEDS_GenericAttribute_i
45 {
46 public:
47   
48   SALOMEDS_AttributeGraphic_i( SALOMEDSImpl_AttributeGraphic* theAttr, CORBA::ORB_ptr orb )
49     :SALOMEDS_GenericAttribute_i(theAttr, orb) {}; 
50
51   virtual             ~SALOMEDS_AttributeGraphic_i() {};
52
53   void                SetVisibility( CORBA::Long    theViewId,
54                                      CORBA::Boolean theValue );
55   CORBA::Boolean      GetVisibility( CORBA::Long    theViewId );
56
57 };
58
59 #endif