typhoon/tempest/range/CiRange.hpp
2022-12-24 22:58:27 -06:00

13 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