summaryrefslogtreecommitdiff
path: root/PluginControlInterface/include/ControlSender.h
diff options
context:
space:
mode:
Diffstat (limited to 'PluginControlInterface/include/ControlSender.h')
-rw-r--r--PluginControlInterface/include/ControlSender.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/PluginControlInterface/include/ControlSender.h b/PluginControlInterface/include/ControlSender.h
index d4bb7bb..834c432 100644
--- a/PluginControlInterface/include/ControlSender.h
+++ b/PluginControlInterface/include/ControlSender.h
@@ -27,6 +27,7 @@
#define CONTROLSENDER_H_
#include <control/ControlSendInterface.h>
+#include <list>
using namespace am;
@@ -81,6 +82,13 @@ public:
private:
ControlReceiveInterface * mControlReceiveInterface;
+ struct handleStack
+ {
+ bool ok;
+ am_Handle_s handle;
+ };
+ std::list<handleStack> mListOpenHandles;
+ am_mainConnectionID_t mCurrentID;
};
#endif /* CONTROLSENDER_H_ */