Add stream proxy for declaring pack values

This commit is contained in:
Jan
2021-02-14 10:27:18 +01:00
parent efa39a8ac3
commit 3f08be0564
6 changed files with 188 additions and 1 deletions

View 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() = 0;
};