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

10 lines
197 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:
2023-10-21 14:44:06 +00:00
virtual void run() override;
virtual const char *name() const override { return "Nullptr test"; }
2023-10-18 17:49:49 +00:00
};