Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeSelectable.hxx
1 //  File   : SALOMEDS_AttributeSelectable.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeSelectable_HeaderFile
6 #define SALOMEDS_AttributeSelectable_HeaderFile
7
8 #include "SALOMEDSClient_AttributeSelectable.hxx"
9 #include "SALOMEDS_GenericAttribute.hxx"
10 #include "SALOMEDSImpl_AttributeSelectable.hxx"
11
12 // IDL headers
13 #include <SALOMEconfig.h>
14 #include CORBA_SERVER_HEADER(SALOMEDS)
15 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
16
17 class SALOMEDS_AttributeSelectable: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeSelectable
18 {
19 public:  
20   SALOMEDS_AttributeSelectable(const Handle(SALOMEDSImpl_AttributeSelectable)& theAttr);
21   SALOMEDS_AttributeSelectable(SALOMEDS::AttributeSelectable_ptr theAttr);
22   ~SALOMEDS_AttributeSelectable();
23
24   virtual bool IsSelectable();
25   virtual void SetSelectable(bool value);
26 };
27
28 #endif