mirror of
https://github.com/nasa/trick.git
synced 2024-12-27 08:32:30 +00:00
28 lines
586 B
Plaintext
28 lines
586 B
Plaintext
/*
|
|
* $Id: S_define 3383 2014-01-22 23:18:15Z alin $
|
|
*/
|
|
|
|
/************************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 ;
|
|
|