summaryrefslogtreecommitdiffstats
path: root/src/ClientInfo.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ClientInfo.hpp')
-rw-r--r--src/ClientInfo.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ClientInfo.hpp b/src/ClientInfo.hpp
new file mode 100644
index 0000000..2dd755e
--- /dev/null
+++ b/src/ClientInfo.hpp
@@ -0,0 +1,18 @@
+// Copyright 2007-2020 David Robillard <d@drobilla.net>
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#ifndef PATCHAGE_CLIENTINFO_HPP
+#define PATCHAGE_CLIENTINFO_HPP
+
+#include <string>
+
+namespace patchage {
+
+/// Extra information about a client (program) not expressed in its ID
+struct ClientInfo {
+ std::string label; ///< Human-friendly label
+};
+
+} // namespace patchage
+
+#endif // PATCHAGE_CLIENTINFO_HPP