feat: range based for

This commit is contained in:
Michael Mandl 2023-10-22 22:12:56 +02:00
parent 09a1efeedf
commit f3c8cad317
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 40 additions and 4 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include "chapter_interface.h"
class RangeBasedForTest : public ChapterTest {
public:
virtual void run() override;
virtual const char *name() const override { return "Range based for test"; }
};