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

9 lines
127 B
C++

#pragma once
#include "chapter_interface.h"
class NullTest : public ChapterTest {
public:
virtual void test() override;
};