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.
tdemultimedia/arts/modules/common/env_item_impl.h

29 lines
428 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 parent();
void setContainer(Container container);
};
}
}
#endif