mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
13 lines
270 B
C
13 lines
270 B
C
|
/*************************************************************************
|
||
|
PURPOSE: (Empty class)
|
||
|
LIBRARY DEPENDENCY:
|
||
|
(
|
||
|
(empty.cpp)
|
||
|
)
|
||
|
**************************************************************************/
|
||
|
|
||
|
class Empty {
|
||
|
public:
|
||
|
Empty() = delete;
|
||
|
};
|