-rw-r--r-- | src/model/coordinates.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/model/coordinates.h b/src/model/coordinates.h new file mode 100644 index 0000000..386f839 --- a/dev/null +++ b/src/model/coordinates.h | |||
@@ -0,0 +1,12 @@ | |||
1 | struct | ||
2 | { | ||
3 | sqlint32 coord_id; | ||
4 | struct | ||
5 | { | ||
6 | short length; | ||
7 | char data[50]; | ||
8 | } gi; | ||
9 | double x; | ||
10 | double y; | ||
11 | } coordinates; | ||
12 | |||