KiCad PCB EDA Suite
|
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs. More...
#include <layer_ids.h>
Public Member Functions | |
LSEQ () | |
template<class InputIterator > | |
LSEQ (InputIterator aStart, InputIterator aEnd) | |
void | Rewind () |
void | operator++ () |
void | operator++ (int) |
operator bool () | |
PCB_LAYER_ID | operator* () const |
Private Attributes | |
unsigned | m_index |
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
A sequence provides a certain order.
It can also be used as an iterator:
for( LSEQ cu_stack = aSet.CuStack(); cu_stack; ++cu_stack ) { layer_id = *cu_stack; : things to do with layer_id; }
Definition at line 492 of file layer_ids.h.
|
inline |
Definition at line 498 of file layer_ids.h.
|
inline |
Definition at line 503 of file layer_ids.h.
|
inline |
|
inline |
Definition at line 515 of file layer_ids.h.
References m_index.
|
inline |
|
inline |
|
inline |
|
private |
Definition at line 494 of file layer_ids.h.
Referenced by operator bool(), operator*(), operator++(), and Rewind().