added default constructor for PrintExamples

release/4.3a0
Varun Agrawal 2019-05-17 18:30:19 -04:00
parent a743a4acc9
commit e985e2c95d
1 changed files with 5 additions and 3 deletions

View File

@ -18,12 +18,14 @@
// This is an interface file for automatic MATLAB wrapper generation. See
// gtsam.h for full documentation and more examples.
#include <example/PrintExamples.h>
namespace example {
#include <example/PrintExamples.h>
class PrintExamples {
void sayHello() const;
void sayGoodbye() const;
PrintExamples();
void sayHello() const;
void sayGoodbye() const;
};
}