File: Path.h
1| #ifndef _Path_h
2| #define _Path_h
3|
4|
5| struct Vertex
6| {
7| double x;
8| double y;
9| };
10|
11|
12|
13| class Path
14| {
15| public:
16| virtual ~Path() {}
17|
18| virtual void draw() = 0;
19|
20|
21| private:
22| };
23|
24| #endif