trick/test/SIM_delete_default_constructor/models/starter.h

15 lines
301 B
C
Raw Normal View History

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