trick/trick_sims/SIM_alloc_test/S_define
2015-02-26 09:02:31 -06:00

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 ;