mirror of
https://github.com/ratspeak/microReticulum
synced 2026-08-12 18:07:25 -04:00
12 lines
134 B
C++
12 lines
134 B
C++
#pragma once
|
|
|
|
#include "B.h"
|
|
|
|
class AData {
|
|
protected:
|
|
AData() {}
|
|
AData(const B& b) : _b(b) {}
|
|
protected:
|
|
B _b;
|
|
friend class A;
|
|
};
|