icinga2/base/object.h

49 lines
725 B
C
Raw Normal View History

#ifndef OBJECT_H
#define OBJECT_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
class I2_BASE_API Object : public enable_shared_from_this<Object>
2012-03-28 13:24:49 +02:00
{
private:
Object(const Object &other);
protected:
Object(void);
virtual ~Object(void);
2012-03-28 13:24:49 +02:00
public:
typedef shared_ptr<Object> Ptr;
typedef weak_ptr<Object> WeakPtr;
2012-03-28 13:24:49 +02:00
static unsigned long ActiveObjects;
};
template<class T>
struct weak_ptr_eq_raw
{
private:
const void *m_Ref;
public:
weak_ptr_eq_raw(const void *ref) : m_Ref(ref) { }
bool operator()(const weak_ptr<T>& wref) const
{
return (wref.lock().get() == (const T *)m_Ref);
}
};
typedef function<Object::Ptr ()> factory_function;
2012-03-28 13:24:49 +02:00
template<class T>
Object::Ptr factory(void)
2012-03-28 13:24:49 +02:00
{
2012-04-03 15:16:11 +02:00
return make_shared<T>();
2012-03-28 13:24:49 +02:00
}
}
#endif /* OBJECT_H */