KiCad PCB EDA Suite
Loading...
Searching...
No Matches
job_export_pcb_plot.cpp
Go to the documentation of this file.
1
2
4
5JOB_EXPORT_PCB_PLOT::JOB_EXPORT_PCB_PLOT( PLOT_FORMAT aFormat, const std::string& aType,
6 bool aOutputIsDirectory )
7 : JOB( aType, aOutputIsDirectory ),
8 m_plotFormat( aFormat ),
9 m_filename(),
10 m_colorTheme(),
11 m_drawingSheet(),
12 m_mirror( false ),
13 m_blackAndWhite( false ),
14 m_negative( false ),
15 m_sketchPadsOnFabLayers( false ),
16 m_hideDNPFPsOnFabLayers( false ),
17 m_sketchDNPFPsOnFabLayers( true ),
18 m_crossoutDNPFPsOnFabLayers( true ),
19 m_plotFootprintValues( true ),
20 m_plotRefDes( true ),
21 m_plotDrawingSheet( true ),
22 m_printMaskLayer(),
23 m_drillShapeOption( 2 )
24{
25
26}
JOB_EXPORT_PCB_PLOT(PLOT_FORMAT aFormat, const std::string &aType, bool aOutputIsDirectory)
An simple container class that lets us dispatch output jobs to kifaces.
Definition: job.h:79