mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 13:27:13 +01:00
18 lines
228 B
C
18 lines
228 B
C
|
#ifndef CPR_RESERVE_SIZE_H
|
||
|
#define CPR_RESERVE_SIZE_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace cpr {
|
||
|
|
||
|
class ReserveSize {
|
||
|
public:
|
||
|
ReserveSize(const size_t _size) : size(_size) {}
|
||
|
|
||
|
size_t size = 0;
|
||
|
};
|
||
|
|
||
|
} // namespace cpr
|
||
|
|
||
|
#endif
|