1
0
Fork 0
modern_cpp_tutorial/chapters/chapter_02/include/delegate_constructor.h

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