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

9 lines
130 B
C
Raw Normal View History

2023-10-19 06:32:43 +00:00
#pragma once
#include "chapter_interface.h"
2023-10-19 06:32:43 +00:00
class IfswitchTest : public ChapterTest {
public:
2023-10-21 14:44:06 +00:00
virtual void run() override;
2023-10-19 06:32:43 +00:00
};