Define ClientData::Site::size

This commit is contained in:
Paul Licameli 2019-07-09 16:38:43 -04:00
parent d8b3d16554
commit 357b593c66

View File

@ -217,6 +217,8 @@ public:
Site& operator =( Site && other )
{ mData = std::move(other.mData); return *this; }
size_t size() const { return mData.size(); }
/// \brief a type meant to be stored by client code in a static variable,
/// and used as a retrieval key to get the manufactured client object back
/// from the host object.