mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-07 13:04:58 +00:00
16 lines
324 B
C++
16 lines
324 B
C++
#pragma once
|
|
|
|
#include "Loading/ILoadingStep.h"
|
|
#include "Loading/ISignatureProvider.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace step
|
|
{
|
|
class IStepLoadSignature : public ILoadingStep, public ISignatureProvider
|
|
{
|
|
};
|
|
|
|
std::unique_ptr<IStepLoadSignature> CreateStepLoadSignature(size_t signatureSize);
|
|
} // namespace step
|