Renamed XImpl to AbstractX (More consistent)
Where * is Buffer, Hash and Shader Former-commit-id: a99681ab1d515c9b39e6ba5f447c9000ef1092b8
This commit is contained in:
26
include/Nazara/Core/AbstractHash.hpp
Normal file
26
include/Nazara/Core/AbstractHash.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (C) 2013 Jérôme Leclercq
|
||||
// This file is part of the "Nazara Engine - Core module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_ABSTRACTHASH_HPP
|
||||
#define NAZARA_ABSTRACTHASH_HPP
|
||||
|
||||
#include <Nazara/Prerequesites.hpp>
|
||||
#include <Nazara/Core/NonCopyable.hpp>
|
||||
|
||||
class NzHashDigest;
|
||||
|
||||
class NAZARA_API NzAbstractHash : NzNonCopyable
|
||||
{
|
||||
public:
|
||||
NzAbstractHash() = default;
|
||||
virtual ~NzAbstractHash();
|
||||
|
||||
virtual void Append(const nzUInt8* data, unsigned int len) = 0;
|
||||
virtual void Begin() = 0;
|
||||
virtual NzHashDigest End() = 0;
|
||||
};
|
||||
|
||||
#endif // NAZARA_ABSTRACTHASH_HPP
|
||||
Reference in New Issue
Block a user