1
0
Fork 0
modern_cpp_tutorial/chapters/interface/include/chapter_interface.h

8 lines
108 B
C++

#pragma once
class ChapterTest {
public:
virtual ~ChapterTest() = default;
virtual void test() = 0;
};