10 lines
220 B
C++
10 lines
220 B
C++
#pragma once
|
|
|
|
#include "chapter_interface.h"
|
|
|
|
class DelegateConstructor : public ChapterTest {
|
|
virtual void run() override;
|
|
virtual const char *name() const override {
|
|
return "Delegate constructor test";
|
|
};
|
|
};
|