~aleteoryx/muditaos

ref: 3ff04e06c9eab6de2c9a2ded0876bed2d87eab93 muditaos/module-apps/apps-common/widgets/AbstractProgressTime.hpp -rw-r--r-- 425 bytes
3ff04e06 — Maciej Gibowicz [BH-1944] Changing the rounding method for minutes in relaxation 1 year, 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

#include <time/time_constants.hpp>
#include <cstdint>

namespace gui
{

    class AbstractProgressTime
    {
      public:
        virtual ~AbstractProgressTime()                = default;
        virtual void updateTime(std::uint32_t seconds) = 0;
    };
} // namespace gui