18 lines
295 B
C
18 lines
295 B
C
|
//
|
||
|
// Created by natty on 15.7.23.
|
||
|
//
|
||
|
|
||
|
#ifndef TSP_SVGPATHEXTRACTOR_H
|
||
|
#define TSP_SVGPATHEXTRACTOR_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <string_view>
|
||
|
|
||
|
#include "svgpathextractor.h"
|
||
|
#include "renderwindow.h"
|
||
|
|
||
|
std::vector<Vertex> extractVertices(std::string_view path);
|
||
|
|
||
|
|
||
|
#endif //TSP_SVGPATHEXTRACTOR_H
|