/* * KiRouter - a push-and-(sometimes-)shove PCB router * * Copyright (C) 2013-2014 CERN * Author: Tomasz Wlostowski * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef __PNS_ITEMSET_H #define __PNS_ITEMSET_H #include #include "pns_item.h" /** * Class PNS_ITEMSET * * Holds a list of board items, that can be filtered against net, kinds, * layers, etc. **/ class PNS_ITEMSET { public: typedef std::vector ITEM_VECTOR; PNS_ITEMSET( PNS_ITEM* aInitialItem = NULL ); PNS_ITEMSET( const PNS_ITEMSET& aOther ) { m_items = aOther.m_items; m_ownedItems = ITEM_VECTOR(); } const PNS_ITEMSET& operator=( const PNS_ITEMSET& aOther ) { m_items = aOther.m_items; m_ownedItems = ITEM_VECTOR(); return *this; } ~PNS_ITEMSET(); ITEM_VECTOR& Items() { return m_items; } const ITEM_VECTOR& CItems() const { return m_items; } PNS_ITEMSET& FilterLayers( int aStart, int aEnd = -1 ); PNS_ITEMSET& FilterKinds( int aKindMask ); PNS_ITEMSET& FilterNet( int aNet ); int Size() { return m_items.size(); } void Add( PNS_ITEM* aItem ) { m_items.push_back( aItem ); } PNS_ITEM* Get( int index ) const { return m_items[index]; } void Clear(); void AddOwned( PNS_ITEM *aItem ) { m_items.push_back( aItem ); m_ownedItems.push_back( aItem ); } private: ITEM_VECTOR m_items; ITEM_VECTOR m_ownedItems; }; #endif