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

11 lines
220 B
C
Raw Normal View History

2023-11-05 10:54:41 +00:00
#pragma once
#include "chapter_interface.h"
class DelegateConstructor : public ChapterTest {
virtual void run() override;
virtual const char *name() const override {
return "Delegate constructor test";
};
};