mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
c0791b46d9
* check if default constructor is deleted #1094 * unit test icg deleted default constructor #1094 * Update centos 7 swig version to 3.0 to support deleted function in SIM_deleted_default_constructor test Co-authored-by: Fennell, Scott P 263712616 <scott.p.fennell@nasa.gov> closes #1094
23 lines
436 B
Plaintext
23 lines
436 B
Plaintext
/************************TRICK HEADER*************************
|
|
PURPOSE:
|
|
()
|
|
LIBRARY DEPENDENCIES:
|
|
*************************************************************/
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "starter.h"
|
|
##include "empty.h"
|
|
|
|
class StarterSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
Starter starter;
|
|
|
|
StarterSimObject() : starter(5){
|
|
|
|
}
|
|
};
|
|
|
|
StarterSimObject starterSimObject;
|