Skip to content

Instantly share code, notes, and snippets.

#include <memory>
#include <iostream>
#include <vector>
using namespace std;
class Base
{
};
#include <memory>
#include <iostream>
using namespace std;
class B;
class A;
using Aptr = std::shared_ptr<A>;
using Bptr = std::shared_ptr<B>;