mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
23 lines
377 B
C++
23 lines
377 B
C++
|
//@trick_link_dependency{Classes.cpp}
|
||
|
|
||
|
#ifndef CLASSES_HH
|
||
|
#define CLASSES_HH
|
||
|
|
||
|
#include "trick/SimObject.hh"
|
||
|
|
||
|
void foo();
|
||
|
|
||
|
class Normal {};
|
||
|
template <class T> class Template1 {};
|
||
|
template <class T, typename U> struct Template2 {};
|
||
|
|
||
|
namespace Foo {
|
||
|
|
||
|
class FooNormal {};
|
||
|
template <class T> class FooTemplate1 {};
|
||
|
template <class T, typename U> struct FooTemplate2 {};
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|