summaryrefslogtreecommitdiff
path: root/PluginControlInterface/include
diff options
context:
space:
mode:
authorchristian mueller <christian.ei.mueller@bmw.de>2012-02-08 17:01:01 +0100
committerchristian mueller <christian.ei.mueller@bmw.de>2012-02-08 17:01:01 +0100
commit8d3ad577f57e0a45ef9c0e2f1ce99957445f0eb8 (patch)
treebbc48af41185287f647704db992b3079b6aceffa /PluginControlInterface/include
parente924eb3ec4717647d61e9ec4d5cc74f81ea749b9 (diff)
downloadaudiomanager-8d3ad577f57e0a45ef9c0e2f1ce99957445f0eb8.tar.gz
* more changes regarding test controller. Now a very basic connect is supported
Diffstat (limited to 'PluginControlInterface/include')
-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_ */