This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues/pull-requests.
ecg-prog-filtered/u02/include/star_tool.h

14 lines
259 B
C++

// SPDX-License-Identifier: LGPL-3.0-or-later
#pragma once
#include "tool_base.h"
class star_tool : public tool_base {
public:
star_tool(canvas_buffer &canvas);
void draw(int x0, int y0, int x1, int y1);
void set_text(std::stringstream &stream);
};