From 5b85fc885f5a3966837f9b9fcfd0dfbde5715e7b Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Fri, 17 May 2019 12:15:10 -0400 Subject: [PATCH] added required includes to fix compilation of matlab wrapper example --- cmake/example_project/example.h | 1 + cmake/example_project/example/PrintExamples.h | 1 + 2 files changed, 2 insertions(+) diff --git a/cmake/example_project/example.h b/cmake/example_project/example.h index 47b9a0aa2..eea1e13a5 100644 --- a/cmake/example_project/example.h +++ b/cmake/example_project/example.h @@ -20,6 +20,7 @@ namespace example { +#include class PrintExamples { void sayHello() const; void sayGoodbye() const; diff --git a/cmake/example_project/example/PrintExamples.h b/cmake/example_project/example/PrintExamples.h index b151dfbc7..25d4dd8cb 100644 --- a/cmake/example_project/example/PrintExamples.h +++ b/cmake/example_project/example/PrintExamples.h @@ -17,6 +17,7 @@ #pragma once +#include #include namespace example {