29 lines
730 B
C++
29 lines
730 B
C++
/* ----------------------------------------------------------------------------
|
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
|
* Atlanta, Georgia 30332-0415
|
|
* All Rights Reserved
|
|
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
|
|
|
|
* See LICENSE for the license information
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* @file example.h
|
|
* @brief Example wrapper interface file
|
|
* @author Richard Roberts
|
|
*/
|
|
|
|
// This is an interface file for automatic MATLAB wrapper generation. See
|
|
// gtsam.h for full documentation and more examples.
|
|
|
|
namespace example {
|
|
|
|
class PrintExamples {
|
|
void sayHello() const;
|
|
void sayGoodbye() const;
|
|
};
|
|
|
|
}
|