summaryrefslogtreecommitdiffstats
path: root/src/Configuration.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-05-10 17:23:17 -0400
committerDavid Robillard <d@drobilla.net>2021-05-11 13:30:55 -0400
commit5a3ee2b3358e147aeb0cabced90991a5ae3b5870 (patch)
tree78de1106cba6a30d686ed4ff46978551f4421f86 /src/Configuration.hpp
parente3f6f09981d7862ca34c98f45b3caadf29abee15 (diff)
downloadpatchage-5a3ee2b3358e147aeb0cabced90991a5ae3b5870.tar.gz
patchage-5a3ee2b3358e147aeb0cabced90991a5ae3b5870.tar.bz2
patchage-5a3ee2b3358e147aeb0cabced90991a5ae3b5870.zip
Move Coord to its own header
Diffstat (limited to 'src/Configuration.hpp')
-rw-r--r--src/Configuration.hpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/Configuration.hpp b/src/Configuration.hpp
index 45842a4..75fdcfc 100644
--- a/src/Configuration.hpp
+++ b/src/Configuration.hpp
@@ -17,6 +17,7 @@
#ifndef PATCHAGE_CONFIGURATION_HPP
#define PATCHAGE_CONFIGURATION_HPP
+#include "Coord.hpp"
#include "PortType.hpp"
#include "SignalDirection.hpp"
@@ -30,18 +31,6 @@
namespace patchage {
-struct Coord {
- Coord() = default;
-
- Coord(double x_, double y_)
- : x(x_)
- , y(y_)
- {}
-
- double x{0.0};
- double y{0.0};
-};
-
class Configuration
{
public: