Files
Renderive/Qt/plot/Explicit_Plot.h
T
2026-08-10 19:55:29 +08:00

20 lines
373 B
C++

#pragma once
#include "Plot.h"
namespace renderive {
struct Render_Ticket {
bool rendered{};
[[nodiscard]] explicit operator bool() const noexcept { return rendered; }
};
class LIB_DECL Explicit_Plot : public Abs_Plot {
public:
Explicit_Plot();
~Explicit_Plot() override = default;
[[nodiscard]] Render_Ticket replot();
};
} // namespace renderive