Utility/AbstractImage: Inherit RefCounted

This commit is contained in:
Lynix
2016-10-20 23:53:22 +02:00
parent 3c29bfe516
commit a7d2d8cddd
5 changed files with 29 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Utility/AbstractImage.hpp>
#include <Nazara/Utility/Debug.hpp>
namespace Nz
{
inline AbstractImage::AbstractImage(const AbstractImage& image) :
RefCounted()
{
}
}
#include <Nazara/Utility/DebugOff.hpp>