trick/test/SIM_alloc_test/S_define
Alex Lin 9ddc786ace Split test sims and fun sims into separate directories.
Moved most of the rest of the sims to test.

refs #191
2016-02-23 16:19:30 -06:00

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 ;