feat(range): add CiRange

This commit is contained in:
fallenoak 2022-12-24 22:58:27 -06:00
parent 001a48a575
commit 7b822f9812
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 14 additions and 0 deletions

13
tempest/range/CiRange.hpp Normal file
View file

@ -0,0 +1,13 @@
#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