1
0
This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
modern_cpp_tutorial/chapters/interface/include/chapter_interface.h

9 lines
147 B
C++

#pragma once
class ChapterTest {
public:
virtual ~ChapterTest() = default;
virtual void run() = 0;
virtual const char *name() const = 0;
};