libpbd: provide access from a ScopedConnection to the underlying UnscopedConnection

This commit is contained in:
Paul Davis 2023-04-21 11:45:22 -06:00
parent 5dc75694f0
commit 074516cdb4
1 changed files with 2 additions and 0 deletions

View File

@ -187,6 +187,8 @@ public:
return *this;
}
UnscopedConnection const & the_connection() const { return _c; }
private:
UnscopedConnection _c;
};