icinga2/base/object.h

74 lines
1.1 KiB
C
Raw Normal View History

#ifndef OBJECT_H
#define OBJECT_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
class Object : public enable_shared_from_this<Object>
{
private:
Object(const Object &other);
protected:
Object(void);
public:
typedef shared_ptr<Object> Ptr;
typedef weak_ptr<Object> WeakPtr;
2012-03-28 13:24:49 +02:00
static unsigned long ActiveObjects;
virtual ~Object(void);
};
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);
}
};
template<class T>
shared_ptr<T> new_object(void)
{
T *instance = new T();
return shared_ptr<T>(instance);
}
template<class T, class TArg1>
shared_ptr<T> new_object(const TArg1& arg1)
{
T *instance = new T(arg1);
return shared_ptr<T>(instance);
}
template<class T, class TArg1, class TArg2>
shared_ptr<T> new_object(const TArg1& arg1, const TArg2& arg2)
{
T *instance = new T(arg1, arg2);
return shared_ptr<T>(instance);
}
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
{
return new_object<T>();
}
}
#endif /* OBJECT_H */