mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 12:56:26 +00:00
90b5cdcb3c
* Added restart to trickops script; updated varserver integration test
26 lines
524 B
Plaintext
26 lines
524 B
Plaintext
/**************************TRICK HEADER***********************
|
|
PURPOSE: ( S_define )
|
|
LIBRARY DEPENDENCIES:
|
|
(
|
|
(varserv/src/VS.cpp)
|
|
)
|
|
*************************************************************/
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "varserv/include/VS.hh"
|
|
|
|
class testSimObject : public Trick::SimObject {
|
|
public:
|
|
VSTest vst;
|
|
|
|
testSimObject() {
|
|
("default_data") vst.default_vars();
|
|
("initialization") vst.init();
|
|
("shutdown") vst.shutdown();
|
|
}
|
|
};
|
|
|
|
// Instantiations
|
|
testSimObject vsx;
|