diff options
Diffstat (limited to 'src/PortInfo.hpp')
-rw-r--r-- | src/PortInfo.hpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/PortInfo.hpp b/src/PortInfo.hpp index a2e2b16..3a4103d 100644 --- a/src/PortInfo.hpp +++ b/src/PortInfo.hpp @@ -26,13 +26,12 @@ namespace patchage { /// Extra information about a port not expressed in its ID -struct PortInfo -{ - std::string label; ///< Human-friendly label - PortType type; ///< Detailed port type - SignalDirection direction; ///< Signal direction - boost::optional<int> order; ///< Order key on client - bool is_terminal; ///< True if this is a system port +struct PortInfo { + std::string label; ///< Human-friendly label + PortType type; ///< Detailed port type + SignalDirection direction; ///< Signal direction + boost::optional<int> order; ///< Order key on client + bool is_terminal; ///< True if this is a system port }; } // namespace patchage |