summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Linke <christian.linke@bmw.de>2014-03-19 15:06:12 +0100
committerChristian Linke <christian.linke@bmw.de>2014-03-28 16:47:41 +0100
commit7ba5224b44b63e414eb51d8064050085a4bfb407 (patch)
tree9b587f6add391a9097593e563bcbeca59fa419f2 /include
parent4ee76fe25e635fe8d1daa49f7af3ce4339048be9 (diff)
downloadaudiomanager-7ba5224b44b63e414eb51d8064050085a4bfb407.tar.gz
* some adoptions
Signed-off-by: Christian Linke <christian.linke@bmw.de>
Diffstat (limited to 'include')
-rw-r--r--include/shared/CAmDltWrapper.h2
-rw-r--r--include/shared/CAmSerializer.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/include/shared/CAmDltWrapper.h b/include/shared/CAmDltWrapper.h
index 9eae51e..410acce 100644
--- a/include/shared/CAmDltWrapper.h
+++ b/include/shared/CAmDltWrapper.h
@@ -22,6 +22,7 @@
#include "config.h"
#include <string>
#include <pthread.h>
+#include "audiomanagertypes.h"
#ifdef WITH_DLT
#include <dlt/dlt.h>
@@ -108,6 +109,7 @@ public:
void append(const char*& value);
void append(const std::string& value);
void append(const bool value);
+ void append(am_Error_e value);
#ifndef WITH_DLT
void enableNoDLTDebug(const bool enableNoDLTDebug = true);
#endif
diff --git a/include/shared/CAmSerializer.h b/include/shared/CAmSerializer.h
index 1cfbcc8..ff131d4 100644
--- a/include/shared/CAmSerializer.h
+++ b/include/shared/CAmSerializer.h
@@ -995,7 +995,6 @@ public:
template<class TClass1, class Targ, class Targ1>
void asyncCall(TClass1* instance, void (TClass1::*function)(Targ argument, Targ1 argument1), Targ argument, Targ1 argument1)
{
- logInfo("took without ref");
CAmDelegagePtr p(new CAmTwoArgDelegate<TClass1, Targ, Targ1>(instance, function, argument, argument1));
send(p);
}