From e985e2c95df1386b216b3d37efec1ad86c8c5e65 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Fri, 17 May 2019 18:30:19 -0400 Subject: [PATCH] added default constructor for PrintExamples --- cmake/example_project/example.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cmake/example_project/example.h b/cmake/example_project/example.h index eea1e13a5..b0d732e14 100644 --- a/cmake/example_project/example.h +++ b/cmake/example_project/example.h @@ -18,12 +18,14 @@ // This is an interface file for automatic MATLAB wrapper generation. See // gtsam.h for full documentation and more examples. +#include + namespace example { -#include class PrintExamples { - void sayHello() const; - void sayGoodbye() const; + PrintExamples(); + void sayHello() const; + void sayGoodbye() const; }; }