summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/include/CommandReceiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/include/CommandReceiver.h')
-rw-r--r--AudioManagerDaemon/include/CommandReceiver.h26
1 files changed, 11 insertions, 15 deletions
diff --git a/AudioManagerDaemon/include/CommandReceiver.h b/AudioManagerDaemon/include/CommandReceiver.h
index a49c03d..2e49c9a 100644
--- a/AudioManagerDaemon/include/CommandReceiver.h
+++ b/AudioManagerDaemon/include/CommandReceiver.h
@@ -1,19 +1,9 @@
-/*
- * CommandReceiver.h
- *
- * Created on: Oct 24, 2011
- * Author: christian
- */
-
-#ifndef COMMANDRECEIVER_H_
-#define COMMANDRECEIVER_H_
-
/**
* Copyright (C) 2011, BMW AG
*
* GeniviAudioMananger AudioManagerDaemon
*
-* \file DBusWrapper.cpp
+* \file CommandReveiver.h
*
* \date 20-Oct-2011 3:42:04 PM
* \author Christian Mueller (christian.ei.mueller@bmw.de)
@@ -30,8 +20,11 @@
* As a special exception, the copyright holders of AudioManager give you permission to combine AudioManager with software programs or libraries that are released under any license unless such a combination is not permitted by the license of such a software program or library. You may copy and distribute such a system following the terms of the GNU Lesser General Public License, version 2.1, including this special exception, for AudioManager and the licenses of the other code concerned.
* Note that people who make modified versions of AudioManager are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License, version 2.1, gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception.
*
-* THIS CODE HAS BEEN GENERATED BY ENTERPRISE ARCHITECT GENIVI MODEL. PLEASE CHANGE ONLY IN ENTERPRISE ARCHITECT AND GENERATE AGAIN
*/
+
+#ifndef COMMANDRECEIVER_H_
+#define COMMANDRECEIVER_H_
+
#include <command/CommandReceiveInterface.h>
#include "DatabaseHandler.h"
#include "DBusWrapper.h"
@@ -39,6 +32,9 @@
using namespace am;
+/**
+ * This class realizes the command Interface
+ */
class CommandReceiver: public CommandReceiveInterface {
public:
CommandReceiver(DatabaseHandler* iDatabaseHandler, DBusWrapper* iDBusWrapper, ControlSender* iControlSender);
@@ -63,9 +59,9 @@ public:
am_Error_e getDBusConnectionWrapper(DBusWrapper*& dbusConnectionWrapper) const ;
private:
- DatabaseHandler* mDatabaseHandler;
- DBusWrapper* mDBusWrapper;
- ControlSender* mControlSender;
+ DatabaseHandler* mDatabaseHandler; //!< pointer to the databasehandler
+ DBusWrapper* mDBusWrapper; //!< pointer to the dbuswrapper
+ ControlSender* mControlSender; //!< pointer to the control sender
};
#endif /* COMMANDRECEIVER_H_ */