trick/test/SIM_delete_default_constructor/models/starter.h
Scott Fennell c0791b46d9
icg default constructor is deleted ()
* check if default constructor is deleted 

* unit test icg deleted default constructor 

* 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 
2021-02-05 19:32:36 -06:00

15 lines
301 B
C++

/*************************************************************************
PURPOSE: (Starter class)
LIBRARY DEPENDENCY:
(
(starter.cpp)
)
**************************************************************************/
class Starter {
public:
Starter() = delete;
Starter(int foo);
};