mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
9ddc786ace
Moved most of the rest of the sims to test. refs #191
24 lines
523 B
Plaintext
24 lines
523 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 "allocation/include/AllocTest.hh"
|
|
|
|
class AllocTestSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
|
|
AllocTest at ;
|
|
AllocTestWithMMInterface atwmmi ;
|
|
|
|
AllocTestSimObject() {
|
|
}
|
|
} ;
|
|
|
|
AllocTestSimObject alloc_test ;
|
|
|