mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
16 lines
277 B
C++
16 lines
277 B
C++
#pragma once
|
|
|
|
#include "IObjContainer.h"
|
|
|
|
#include <set>
|
|
|
|
class ObjContainerReferenceable : public IObjContainer
|
|
{
|
|
std::set<void*> m_references;
|
|
|
|
public:
|
|
void AddReference(void* referencer);
|
|
bool RemoveReference(void* referencer);
|
|
bool IsReferenced() const;
|
|
};
|