From 98506670e8ad6b34be0670eed52fcbf235c7a049 Mon Sep 17 00:00:00 2001
From: Christian Nowke <nowke@vr.rwth-aachen.de>
Date: Thu, 21 Apr 2016 16:48:25 +0200
Subject: [PATCH] added string_vector_message

---
 CMakeLists.txt                  | 1 +
 src/nett-python/nett-python.cpp | 1 +
 2 files changed, 2 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0da031b..6291b3c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -42,6 +42,7 @@ include_directories ("${CMAKE_CURRENT_BINARY_DIR}")
 add_event ( nett_python routing_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
 add_event ( nett_python string_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
 add_event ( nett_python float_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
+add_event ( nett_python string_vector_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
 add_library (nett_python SHARED ${ProjectSources} ${nett_python_EVENT_SOURCE_FILES})
 
 target_link_libraries( nett_python optimized ${NETT_LIBRARY} debug ${NETT_LIBRARY_DEBUG})
diff --git a/src/nett-python/nett-python.cpp b/src/nett-python/nett-python.cpp
index 7071748..5a13d91 100644
--- a/src/nett-python/nett-python.cpp
+++ b/src/nett-python/nett-python.cpp
@@ -11,6 +11,7 @@
 
 #include <../schema/string_message.pb.h>
 #include <../schema/float_message.pb.h>
+#include <../schema/string_vector_message.pb.h>
 
 using namespace boost::python;
 
-- 
GitLab