summaryrefslogtreecommitdiffstats
path: root/src/Coord.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Coord.hpp')
-rw-r--r--src/Coord.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Coord.hpp b/src/Coord.hpp
new file mode 100644
index 0000000..b24d7dc
--- /dev/null
+++ b/src/Coord.hpp
@@ -0,0 +1,28 @@
+// Copyright 2007-2021 David Robillard <d@drobilla.net>
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#ifndef PATCHAGE_COORD_HPP
+#define PATCHAGE_COORD_HPP
+
+namespace patchage {
+
+struct Coord {
+ double x{0.0};
+ double y{0.0};
+};
+
+inline bool
+operator==(const Coord& lhs, const Coord& rhs)
+{
+ return lhs.x == rhs.x && lhs.y == rhs.y;
+}
+
+inline bool
+operator!=(const Coord& lhs, const Coord& rhs)
+{
+ return !(lhs == rhs);
+}
+
+} // namespace patchage
+
+#endif // PATCHAGE_COORD_HPP