Stand/Stand/TimedTextPresenter.hpp

16 lines
277 B
C++
Raw Permalink Normal View History

2024-10-16 11:20:42 +08:00
#pragma once
#include "TimedTextCollection.hpp"
namespace Stand
{
struct TimedTextPresenter
{
TimedTextCollection presentation{};
time_t started_at{};
void startPresenting(TimedTextCollection&& c) noexcept;
[[nodiscard]] TimedText getCurrentText() noexcept;
};
}