| 
									
										
										
										
											2012-06-15 09:01:25 +08:00
										 |  |  | /* ----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-11 22:39:48 +08:00
										 |  |  |  * GTSAM Copyright 2010, Georgia Tech Research Corporation, | 
					
						
							| 
									
										
										
										
											2012-06-15 09:01:25 +08:00
										 |  |  |  * 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 Dummy.h | 
					
						
							|  |  |  |  * @brief Dummy class for testing MATLAB memory allocation | 
					
						
							|  |  |  |  * @author Andrew Melim | 
					
						
							|  |  |  |  * @author Frank Dellaert | 
					
						
							|  |  |  |  * @date June 14, 2012 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-22 00:56:12 +08:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-25 23:57:15 +08:00
										 |  |  | #include <gtsam/global_includes.h>
 | 
					
						
							| 
									
										
										
										
											2019-07-18 14:22:41 +08:00
										 |  |  | #include <gtsam_unstable/dllexport.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-05 23:03:35 +08:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2012-06-15 09:01:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-05 23:03:35 +08:00
										 |  |  | namespace gtsam { | 
					
						
							| 
									
										
										
										
											2012-06-15 09:01:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 02:56:21 +08:00
										 |  |  |   struct GTSAM_UNSTABLE_EXPORT Dummy { | 
					
						
							| 
									
										
										
										
											2012-06-15 09:01:25 +08:00
										 |  |  |     size_t id; | 
					
						
							| 
									
										
										
										
											2012-09-05 23:03:35 +08:00
										 |  |  |     Dummy(); | 
					
						
							|  |  |  |     ~Dummy(); | 
					
						
							|  |  |  |     void print(const std::string& s="") const ; | 
					
						
							|  |  |  |     unsigned char dummyTwoVar(unsigned char a) const ; | 
					
						
							| 
									
										
										
										
											2012-06-15 09:01:25 +08:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace gtsam
 | 
					
						
							|  |  |  | 
 |