mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-03 15:35:41 -04:00
9 lines
303 B
C++
9 lines
303 B
C++
#include "common/object.h"
|
|
|
|
// Have to define this manually as Object has no parent class.
|
|
ObjectTypeInfo Object::s_type_info("Object", nullptr, nullptr, nullptr);
|
|
|
|
Object::Object(const ObjectTypeInfo* pObjectTypeInfo /* = &s_typeInfo */) : m_type_info(pObjectTypeInfo) {}
|
|
|
|
Object::~Object() = default;
|