mirror of
https://github.com/nasa/trick.git
synced 2024-12-26 16:21:07 +00:00
24 lines
528 B
Plaintext
24 lines
528 B
Plaintext
|
/************************TRICK HEADER*************************
|
||
|
PURPOSE:
|
||
|
(This sim shows the different ways to allocate a class in)
|
||
|
the input file.)
|
||
|
*************************************************************/
|
||
|
|
||
|
#include "sim_objects/default_trick_sys.sm"
|
||
|
|
||
|
##include "test/allocation/include/AllocTest.hh"
|
||
|
|
||
|
class AllocTestSimObject : public Trick::SimObject {
|
||
|
|
||
|
public:
|
||
|
|
||
|
AllocTest at ;
|
||
|
AllocTestWithMMInterface atwmmi ;
|
||
|
|
||
|
AllocTestSimObject() {
|
||
|
}
|
||
|
} ;
|
||
|
|
||
|
AllocTestSimObject alloc_test ;
|
||
|
|