-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 @@ +struct +{ + sqlint32 coord_id; + struct + { + short length; + char data[50]; + } gi; + double x; + double y; +} coordinates; + |