microReticulum/test/test_objects/AImpl.h
2025-08-26 21:05:36 -06:00

13 lines
163 B
C++

#pragma once
#include "B.h"
class AImpl {
public:
using Ptr = std::shared_ptr<AImpl>;
AImpl() {}
AImpl(const B& b) : _b(b) {}
B getB();
protected:
B _b;
};