summaryrefslogtreecommitdiffhomepage
path: root/proto-iokit-foohid/iokitprotocoldialog.h
diff options
context:
space:
mode:
authorStanisław Halik <sthalik@misaki.pl>2017-11-28 15:16:27 +0100
committerGitHub <noreply@github.com>2017-11-28 15:16:27 +0100
commit1a91ba620dfbc420cfeee4530bc3f03127f3b967 (patch)
tree2a02884f633ddbc7ede387a5bf2aa8d7b0396e5f /proto-iokit-foohid/iokitprotocoldialog.h
parentf548847ea43006b2dc540e84d11d3c3662a94148 (diff)
parent7bacbdf10b97040c9ed282a22485759bd082fa63 (diff)
Merge pull request #700 from e4z9/foohid
Add virtual joystick output for macOS
Diffstat (limited to 'proto-iokit-foohid/iokitprotocoldialog.h')
-rw-r--r--proto-iokit-foohid/iokitprotocoldialog.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/proto-iokit-foohid/iokitprotocoldialog.h b/proto-iokit-foohid/iokitprotocoldialog.h
new file mode 100644
index 00000000..0417ba26
--- /dev/null
+++ b/proto-iokit-foohid/iokitprotocoldialog.h
@@ -0,0 +1,21 @@
+/* Copyright (c) 2017, Eike Ziller *
+ * *
+ * Permission to use, copy, modify, and/or distribute this software for any *
+ * purpose with or without fee is hereby granted, provided that the above *
+ * copyright notice and this permission notice appear in all copies. *
+ */
+
+#pragma once
+
+#include "api/plugin-api.hpp"
+
+class IOKitProtocolDialog : public IProtocolDialog
+{
+ Q_OBJECT
+
+public:
+ IOKitProtocolDialog();
+
+ void register_protocol(IProtocol *protocol) final;
+ void unregister_protocol() final;
+};