32 lines
		
	
	
		
			791 B
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			791 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.
 | |
| 
 | |
| #include <example/PrintExamples.h>
 | |
| 
 | |
| namespace example {
 | |
| 
 | |
| class PrintExamples {
 | |
|     PrintExamples();
 | |
|     void sayHello() const;
 | |
|     void sayGoodbye() const;
 | |
| };
 | |
| 
 | |
| }
 |