summaryrefslogtreecommitdiff
path: root/includes/command/CommandSendInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/command/CommandSendInterface.h')
-rw-r--r--includes/command/CommandSendInterface.h22
1 files changed, 15 insertions, 7 deletions
diff --git a/includes/command/CommandSendInterface.h b/includes/command/CommandSendInterface.h
index 160db6c..f1ec602 100644
--- a/includes/command/CommandSendInterface.h
+++ b/includes/command/CommandSendInterface.h
@@ -22,12 +22,12 @@
*
* THIS CODE HAS BEEN GENERATED BY ENTERPRISE ARCHITECT GENIVI MODEL. PLEASE CHANGE ONLY IN ENTERPRISE ARCHITECT AND GENERATE AGAIN
*/
-#if !defined(EA_55B59518_08CD_47c3_91EC_B59681773D46__INCLUDED_)
-#define EA_55B59518_08CD_47c3_91EC_B59681773D46__INCLUDED_
+#if !defined(EA_B298DDFD_7AC9_4a18_BB8C_595921C525B6__INCLUDED_)
+#define EA_B298DDFD_7AC9_4a18_BB8C_595921C525B6__INCLUDED_
#include <vector>
#include <string>
-#include "../audiomanagertypes.h"
+#include "audiomanagertypes.h"
namespace am {
class CommandReceiveInterface;
@@ -41,12 +41,20 @@ namespace am {
* This interface handles all communication from the AudioManagerDaemon towards the system. It is designed in such a way that only callbacks with no return types are implemented. So when the CommandInterfacePlugins are designed in such a way that they broadcast signals to any node who is interested in the particular information (like signals on Dbus for example), more information can be retrieved via the CommandReceiveInterface.
* @author christian
* @version 1.0
- * @created 19-Jan-2012 4:32:00 PM
+ * @created 26-Jan-2012 6:00:52 PM
*/
class CommandSendInterface
{
public:
+ CommandSendInterface() {
+
+ }
+
+ virtual ~CommandSendInterface() {
+
+ }
+
/**
* This command starts the interface, the plugin itself. This is not meant to start communication with the HMI itself. It is a good idea to implement here everything that sets up the basic communication like DbusCommunication etc...
* @return E_OK on success, E_UNKNOWN on error
@@ -145,10 +153,10 @@ namespace am {
/**
* CommandReceiveVer_0.0.9.
*
- * @param time
* @param mainConnectionID
+ * @param time
*/
- virtual void cbTimingInformationChanged(const am_timeSync_t time, const am_mainConnectionID_t mainConnectionID) =0;
+ virtual void cbTimingInformationChanged(const am_mainConnectionID_t mainConnectionID, const am_timeSync_t time) =0;
/**
* This function returns the version of the interface
* returns E_OK, E_UNKOWN if version is unknown.
@@ -157,4 +165,4 @@ namespace am {
};
}
-#endif // !defined(EA_55B59518_08CD_47c3_91EC_B59681773D46__INCLUDED_)
+#endif // !defined(EA_B298DDFD_7AC9_4a18_BB8C_595921C525B6__INCLUDED_)