feat: inheritance constructor

This commit is contained in:
Michael Mandl 2023-11-05 12:06:16 +01:00
parent 3c3d8d7c26
commit a3c2e3728c
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 37 additions and 1 deletions

View file

@ -0,0 +1,11 @@
#pragma once
#include "chapter_interface.h"
class InheritanceConstructor : public ChapterTest {
public:
virtual void run() override;
virtual const char *name() const override {
return "Inheritance constructor test";
};
};