feat: delegate constructor

This commit is contained in:
Michael Mandl 2023-11-05 11:54:41 +01:00
parent db87dfcf1c
commit 3c3d8d7c26
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 36 additions and 1 deletions

View 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";
};
};