summaryrefslogtreecommitdiffstats
path: root/Master/Masterarbeit/src/common/inc/IPluginExecutor.h
diff options
context:
space:
mode:
authorSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
committerSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
commit33613a85afc4b1481367fbe92a17ee59c240250b (patch)
tree670b842326116b376b505ec2263878912fca97e2 /Master/Masterarbeit/src/common/inc/IPluginExecutor.h
downloadStudium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz
Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2
add new repoHEADmaster
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*/