summaryrefslogtreecommitdiffstats
path: root/Master/Masterarbeit/src/common/inc/IPluginExecutor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Master/Masterarbeit/src/common/inc/IPluginExecutor.h')
-rw-r--r--Master/Masterarbeit/src/common/inc/IPluginExecutor.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/Master/Masterarbeit/src/common/inc/IPluginExecutor.h b/Master/Masterarbeit/src/common/inc/IPluginExecutor.h
new file mode 100644
index 0000000..2a862ac
--- /dev/null
+++ b/Master/Masterarbeit/src/common/inc/IPluginExecutor.h
@@ -0,0 +1,26 @@
+/*!
+ * \file IPluginExecutor.h
+ * \author S. Eisenhauer
+ * \date 10.01.2012
+ * \brief public interface of target main appilcation to be used by target plugins
+ *
+ * This file defines the interface of the target main application
+ * to be used by target plugins
+ */
+#ifndef IPLUGIN_EXECUTOR_H
+#define IPLUGIN_EXECUTOR_H
+
+#include "global.h"
+
+/// pure virtual interface of the target main application
+class IPluginExecutor
+{
+public:
+ /*!
+ * \brief transmit a log buffer to CanEasy
+ * \param[in] stLogMsg reference to logged message
+ */
+ virtual void vUploadLogMessage(const tstLogMessage& stLogMsg) = 0;
+};
+
+#endif /*IPLUGIN_EXECUTOR_H*/