mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
feat(range): add CiRange
This commit is contained in:
parent
001a48a575
commit
7b822f9812
2 changed files with 14 additions and 0 deletions
|
|
@ -2,5 +2,6 @@
|
|||
#define TEMPEST_RANGE_HPP
|
||||
|
||||
#include "tempest/range/CRange.hpp"
|
||||
#include "tempest/range/CiRange.hpp"
|
||||
|
||||
#endif
|
||||
|
|
|
|||
13
tempest/range/CiRange.hpp
Normal file
13
tempest/range/CiRange.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue