mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-08 00:04:27 +02:00
10 lines
129 B
C
10 lines
129 B
C
#ifndef PATH_H
|
|
#define PATH_H
|
|
|
|
#include <QVector>
|
|
#include "coordinates.h"
|
|
|
|
typedef QVector<Coordinates> Path;
|
|
|
|
#endif // PATH_H
|