You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
430 B
29 lines
430 B
|
|
#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 tqparent();
|
|
void setContainer(Container container);
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
#endif
|