rebase session to use shared_ptr

This commit is contained in:
Nathan Nichols
2021-05-26 13:47:51 -05:00
parent be9ab23998
commit fef8f6f223
9 changed files with 173 additions and 153 deletions

View File

@@ -45,6 +45,12 @@ class SubscriptionManager
public:
static std::shared_ptr<SubscriptionManager>
makeSubscriptionManager()
{
return std::make_shared<SubscriptionManager>();
}
void
subLedger(std::shared_ptr<session>& session);