mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
5a7ec20606
Closes #918
21 lines
369 B
Plaintext
21 lines
369 B
Plaintext
#include "sim_objects/default_trick_sys.sm"
|
|
##include "Foo.hh"
|
|
|
|
class Sandbox : public Trick::SimObject {
|
|
|
|
public:
|
|
// These should get TRICK_SWIG_TEMPLATE lines
|
|
Foo<int> foo{1};
|
|
Foo<int> foo2 = {2};
|
|
Foo<int> foo3;
|
|
|
|
// Functions should not
|
|
template<class T> void bar();
|
|
|
|
private:
|
|
void operator=(const Sandbox&);
|
|
|
|
};
|
|
|
|
Sandbox sandbox;
|