blob: dbdca1f9ccf06a92d0f98c45af73c2217a2e259a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef env_item_impl_h
#define env_item_impl_h
#include "artsmodulescommon.h"
#include "weakreference.h"
namespace Arts {
namespace Environment {
typedef WeakReference<Container> Container_wref;
class Item_impl : virtual public Item_skel {
protected:
Container_wref _parent;
bool _active;
public:
Item_impl();
~Item_impl();
bool active();
Container parent();
void setContainer(Container container);
};
}
}
#endif
|