Whiteboard/side_actions: expose size() function from the underlying structure.

This commit is contained in:
Gabriel Morin 2010-10-11 01:58:52 +00:00
parent e557c6b6f4
commit 297e8917f4

View file

@ -99,6 +99,11 @@ public:
*/
bool empty() const { return actions_.empty(); }
/**
* Returns the number of actions in the action queue.
*/
size_t size() const { return actions_.size(); }
/**
* Empties the action queue.
*/