[zion/glacier] Move RefCounted to glacier.

This commit is contained in:
Drew Galbraith 2023-06-21 14:52:40 -07:00
parent 56eae3d4e5
commit 8bcb574677
4 changed files with 33 additions and 44 deletions

View file

@ -1,8 +1,8 @@
#pragma once
#include "lib/ref_counted.h"
#include <glacier/memory/ref_counted.h>
class KernelObject : public RefCounted<KernelObject> {
class KernelObject : public glcr::RefCounted<KernelObject> {
public:
enum ObjectType {
INVALID = 0x0,