https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: f8eb3fa67df5b9b5c7b36af69a10c90258b3eb2b authored by Dmitri Naumov on 09 March 2021, 11:17:46 UTC
[T/RM] Relax tolerances for failing CI job.
Tip revision: f8eb3fa
TimeInterval.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 * File:   TimeInterval.h
 *
 * Created on November 26, 2018, 4:44 PM
 */
#pragma once

#include <memory>

namespace BaseLib
{
class ConfigTree;

/*!
 * Class for a time interval, which has a member to check whether the given time
 * is in this time interval.
 */
class TimeInterval final
{
public:
    TimeInterval(const double start_time, const double end_time)
        : _start_time(start_time), _end_time(end_time)
    {
    }

    TimeInterval(const TimeInterval& time_inverval) = default;

    TimeInterval& operator=(const TimeInterval& time_inverval) = default;

    bool contains(const double current_time) const
    {
        return (current_time >= _start_time && current_time <= _end_time);
    }

private:
    double _start_time;
    double _end_time;
};

std::unique_ptr<TimeInterval> createTimeInterval(
    BaseLib::ConfigTree const& config);

}  // namespace BaseLib
back to top