osci-render/Source/txt/TextParser.h

14 wiersze
301 B
C
Czysty Zwykły widok Historia

2023-02-05 20:36:51 +00:00
#pragma once
2024-01-07 16:17:20 +00:00
#include "../shape/Point.h"
2023-02-05 20:36:51 +00:00
#include <JuceHeader.h>
#include "../shape/Shape.h"
class TextParser {
public:
TextParser(juce::String text, juce::Font font);
~TextParser();
std::vector<std::unique_ptr<Shape>> draw();
private:
std::vector<std::unique_ptr<Shape>> shapes;
};