mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
18 lines
181 B
C++
18 lines
181 B
C++
#ifndef IOBJECT_H
|
|
#define IOBJECT_H
|
|
|
|
class IObject
|
|
{
|
|
public:
|
|
virtual ~IObject(void)
|
|
{
|
|
}
|
|
|
|
virtual void Remove(void)
|
|
{
|
|
delete this;
|
|
}
|
|
};
|
|
|
|
#endif //IOBJECT_H
|