1
0
Fork 0
modern_cpp_tutorial/chapters/chapter_02/include/null.h

9 lines
127 B
C
Raw Normal View History

2023-10-18 17:49:49 +00:00
#pragma once
#include "chapter_interface.h"
class NullTest : public ChapterTest {
public:
virtual void test() override;
2023-10-18 17:49:49 +00:00
};