File Interval.hpp
File List > astrea > astro > astro > time > Interval.hpp
Go to the documentation of this file
#pragma once
#include <units/units.hpp>
namespace astrea {
namespace astro {
class Interval {
public:
Interval(const Time& start, const Time& end) :
start(start),
propTime(end){};
~Interval() = default;
Time start;
Time propTime;
};
} // namespace astro
} // namespace astrea