-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.i
41 lines (29 loc) · 1021 Bytes
/
example.i
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* ----------------------------------------------------------------------------
* 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.i
* @brief Example wrapper interface file
* @author Richard Roberts, Varun Agrawal
*/
// This is an interface file for automatic MATLAB wrapper generation.
// See `wrap` for full documentation and more examples.
#include <example/PrintExamples.h>
namespace example {
template<T = {size_t, int}, U = {float, double}>
class Fun {
Fun();
};
typedef example::Fun<size_t, double> FunCounter;
class PrintExample {
PrintExample();
void print(string s) const;
void sayHello() const;
void sayGoodbye() const;
};
void consumePrinter(example::PrintExample* pe);
} // namespace example