Changeset 813 in Sophya for trunk/SophyaLib/TArray/utilarr.h
- Timestamp:
- Apr 5, 2000, 5:44:19 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/utilarr.h
r804 r813 29 29 class Range { 30 30 public: 31 explicit Range(uint_4 start=0, uint_4 size=1, uint_4 step=1);31 explicit Range(uint_4 start=0, uint_4 end=0, uint_4 size=1, uint_4 step=1); 32 32 inline uint_4 & Start() { return start_; } 33 inline uint_4 & Size() { return size_; } 34 inline uint_4 & Step() { return step_; } 33 inline uint_4 & End() { return end_; } 34 inline uint_4 & Size() { return size_; } 35 inline uint_4 & Step() { return step_; } 35 36 protected: 36 uint_4 start_, size_, step_;37 uint_4 start_, end_, size_, step_ ; 37 38 }; 38 39
Note:
See TracChangeset
for help on using the changeset viewer.