mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 23:38:09 -05:00
Extract commonly used Parser code to new Parser component
This commit is contained in:
14
src/Parser/Parsing/IPackValueSupplier.h
Normal file
14
src/Parser/Parsing/IPackValueSupplier.h
Normal file
@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
class IPackValueSupplier
|
||||
{
|
||||
public:
|
||||
IPackValueSupplier() = default;
|
||||
virtual ~IPackValueSupplier() = default;
|
||||
IPackValueSupplier(const IPackValueSupplier& other) = default;
|
||||
IPackValueSupplier(IPackValueSupplier&& other) noexcept = default;
|
||||
IPackValueSupplier& operator=(const IPackValueSupplier& other) = default;
|
||||
IPackValueSupplier& operator=(IPackValueSupplier&& other) noexcept = default;
|
||||
|
||||
virtual int GetCurrentPack() const = 0;
|
||||
};
|
Reference in New Issue
Block a user