trick/test/SIM_delete_default_constructor/models/empty.h

13 lines
270 B
C
Raw Permalink Normal View History

/*************************************************************************
PURPOSE: (Empty class)
LIBRARY DEPENDENCY:
(
(empty.cpp)
)
**************************************************************************/
class Empty {
public:
Empty() = delete;
};