summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-28 15:15:29 +0100
committerDavid Robillard <d@drobilla.net>2020-11-28 15:15:29 +0100
commita872f8b07498c85f0f2eb8b55462ac9df9ce4677 (patch)
tree2401369149a54d459eaf2644a83a821b65281ad9
parent62b19ed3c43ceb3a88944b892a24686ca0b7b036 (diff)
downloadpatchage-a872f8b07498c85f0f2eb8b55462ac9df9ce4677.tar.gz
patchage-a872f8b07498c85f0f2eb8b55462ac9df9ce4677.tar.bz2
patchage-a872f8b07498c85f0f2eb8b55462ac9df9ce4677.zip
Factor out ClientType
-rw-r--r--src/ClientID.hpp8
-rw-r--r--src/ClientType.hpp27
-rw-r--r--src/PortID.hpp8
3 files changed, 33 insertions, 10 deletions
diff --git a/src/ClientID.hpp b/src/ClientID.hpp
index d58c5ee..43b56ec 100644
--- a/src/ClientID.hpp
+++ b/src/ClientID.hpp
@@ -17,6 +17,8 @@
#ifndef PATCHAGE_CLIENTID_HPP
#define PATCHAGE_CLIENTID_HPP
+#include "ClientType.hpp"
+
#include <cassert>
#include <cstdint>
#include <ostream>
@@ -26,11 +28,7 @@
/// An ID for some client (program) that has ports
struct ClientID
{
- enum class Type
- {
- jack,
- alsa,
- };
+ using Type = ClientType;
ClientID(const ClientID& copy) = default;
ClientID& operator=(const ClientID& copy) = default;
diff --git a/src/ClientType.hpp b/src/ClientType.hpp
new file mode 100644
index 0000000..622b3d8
--- /dev/null
+++ b/src/ClientType.hpp
@@ -0,0 +1,27 @@
+/* This file is part of Patchage.
+ * Copyright 2020 David Robillard <d@drobilla.net>
+ *
+ * Patchage is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option)
+ * any later version.
+ *
+ * Patchage is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Patchage. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef PATCHAGE_CLIENTTYPE_HPP
+#define PATCHAGE_CLIENTTYPE_HPP
+
+/// A type of client (program) with supported ports
+enum class ClientType
+{
+ jack,
+ alsa,
+};
+
+#endif // PATCHAGE_CLIENTTYPE_HPP
diff --git a/src/PortID.hpp b/src/PortID.hpp
index a0f1bb9..4887a27 100644
--- a/src/PortID.hpp
+++ b/src/PortID.hpp
@@ -17,6 +17,8 @@
#ifndef PATCHAGE_PORTID_HPP
#define PATCHAGE_PORTID_HPP
+#include "ClientType.hpp"
+
#include <cassert>
#include <iostream>
#include <string>
@@ -26,11 +28,7 @@
/// An ID for some port on a client (program)
struct PortID
{
- enum class Type
- {
- jack,
- alsa,
- };
+ using Type = ClientType;
PortID(const PortID& copy) = default;
PortID& operator=(const PortID& copy) = default;