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

View file

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