mirror of
https://github.com/ratspeak/microReticulum
synced 2026-08-12 18:07:25 -04:00
13 lines
163 B
C++
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;
|
|
};
|