kicad/pcbnew/router/pns_itemset.h

64 lines
1.5 KiB
C
Raw Normal View History

/*
* KiRouter - a push-and-(sometimes-)shove PCB router
*
* Copyright (C) 2013 CERN
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
2013-09-26 21:53:54 +00:00
*
* 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.
2013-09-26 21:53:54 +00:00
*
* 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.
2013-09-26 21:53:54 +00:00
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.or/licenses/>.
*/
#ifndef __PNS_ITEMSET_H
#define __PNS_ITEMSET_H
#include <vector>
#include "pns_item.h"
/**
* Class PNS_ITEMSET
*
2013-09-26 21:53:54 +00:00
* Holds a list of board items, that can be filtered against net, kinds,
* layers, etc.
**/
class PNS_ITEMSET
{
public:
2013-09-26 21:53:54 +00:00
typedef std::vector<PNS_ITEM*> ItemVector;
2013-09-26 21:53:54 +00:00
PNS_ITEMSET();
~PNS_ITEMSET();
2013-09-26 21:53:54 +00:00
ItemVector& Items() { return m_items; }
2013-09-26 21:53:54 +00:00
PNS_ITEMSET& FilterLayers( int aStart, int aEnd = -1 );
PNS_ITEMSET& FilterKinds( int aKindMask );
PNS_ITEMSET& FilterNet( int aNet );
2013-09-26 21:53:54 +00:00
int Size() { return m_items.size(); }
2013-09-26 21:53:54 +00:00
void Add( PNS_ITEM* item )
{
m_items.push_back( item );
}
2013-09-26 21:53:54 +00:00
PNS_ITEM* Get( int index ) const { return m_items[index]; }
private:
2013-09-26 21:53:54 +00:00
ItemVector m_items;
};
#endif
2013-09-26 21:53:54 +00:00