Added SELECTION_TOOL::GetSelection()

This commit is contained in:
Maciej Suminski 2013-08-30 10:23:18 +02:00
parent 89849cdfa7
commit 424aa28e1f
1 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,10 @@ public:
void Reset(); void Reset();
int Main( TOOL_EVENT& aEvent ); int Main( TOOL_EVENT& aEvent );
const std::set<BOARD_ITEM*>& GetSelection() const
{
return m_selectedItems;
}
private: private:
void selectSingle( const VECTOR2I& aWhere ); void selectSingle( const VECTOR2I& aWhere );