mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
14 lines
184 B
C++
14 lines
184 B
C++
|
|
#ifndef TEMPEST_RANGE_C_IRANGE_HPP
|
||
|
|
#define TEMPEST_RANGE_C_IRANGE_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class CiRange {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
int32_t l;
|
||
|
|
int32_t h;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|