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

9 lines
130 B
C++

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