Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeExpandable.hxx
1 //  File   : SALOMEDS_AttributeExpandable.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeExpandable_HeaderFile
6 #define SALOMEDS_AttributeExpandable_HeaderFile
7
8 #include "SALOMEDSClient_AttributeExpandable.hxx"
9 #include "SALOMEDS_GenericAttribute.hxx"
10 #include "SALOMEDSImpl_AttributeExpandable.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_AttributeExpandable: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeExpandable
18 {
19 public:  
20   SALOMEDS_AttributeExpandable(const Handle(SALOMEDSImpl_AttributeExpandable)& theAttr);
21   SALOMEDS_AttributeExpandable(SALOMEDS::AttributeExpandable_ptr theAttr);
22   ~SALOMEDS_AttributeExpandable();
23
24   virtual bool IsExpandable();
25   virtual void SetExpandable(bool value);
26 };
27
28 #endif