typhoon/tempest/range/CiRange.hpp

14 lines
184 B
C++
Raw Normal View History

2022-12-24 22:58:27 -06:00
#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