feat: delegate constructor
This commit is contained in:
parent
db87dfcf1c
commit
3c3d8d7c26
4 changed files with 36 additions and 1 deletions
10
chapters/chapter_02/include/delegate_constructor.h
Normal file
10
chapters/chapter_02/include/delegate_constructor.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "chapter_interface.h"
|
||||
|
||||
class DelegateConstructor : public ChapterTest {
|
||||
virtual void run() override;
|
||||
virtual const char *name() const override {
|
||||
return "Delegate constructor test";
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue