Separating declaration and definition of RefPtr

This commit is contained in:
HOEGLER Stefan
2020-03-08 13:38:40 +01:00
parent df3ed3c49e
commit 9bff657419
14 changed files with 1940 additions and 34 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ namespace Seele {
Rect area;
Array<PView> views;
};
DECLARE_REF(Section)
DEFINE_REF(Section)
class Graphics;
class Window
{
@@ -64,5 +64,5 @@ namespace Seele {
uint32 height;
Graphics* graphics;
};
DECLARE_REF(Window)
DEFINE_REF(Window)
}