15 lines
226 B
C++
15 lines
226 B
C++
|
#pragma once
|
||
|
|
||
|
#include "integral.hpp"
|
||
|
|
||
|
class Int64 : public Integral<Int64>
|
||
|
{
|
||
|
public:
|
||
|
static constexpr Flags type = Flags::Int64;
|
||
|
|
||
|
Int64(int64_t value) : Integral(Flags::Int64), value(value) {}
|
||
|
|
||
|
int64_t value;
|
||
|
};
|
||
|
|