Stand/Stand/TimedTextPresenter.hpp
2024-10-16 11:20:42 +08:00

16 lines
277 B
C++

#pragma once
#include "TimedTextCollection.hpp"
namespace Stand
{
struct TimedTextPresenter
{
TimedTextCollection presentation{};
time_t started_at{};
void startPresenting(TimedTextCollection&& c) noexcept;
[[nodiscard]] TimedText getCurrentText() noexcept;
};
}