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

12 lines
227 B
C
Raw Normal View History

2023-10-21 15:11:05 +00:00
#pragma once
#include "chapter_interface.h"
class StructuredBindingTest : public ChapterTest {
public:
virtual void run() override;
virtual const char *name() const override {
return "Structured binding test";
}
2023-10-21 15:11:05 +00:00
};