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 bool aIsCli )
8 : JOB( aType, aOutputIsDirectory, aIsCli ),
9 m_plotFormat( aFormat ),
10 m_filename(),
11 m_colorTheme(),
12 m_drawingSheet(),
13 m_mirror( false ),
14 m_blackAndWhite( false ),
15 m_negative( false ),
16 m_sketchPadsOnFabLayers( false ),
17 m_hideDNPFPsOnFabLayers( false ),
18 m_sketchDNPFPsOnFabLayers( true ),
19 m_crossoutDNPFPsOnFabLayers( true ),
20 m_plotFootprintValues( true ),
21 m_plotRefDes( true ),
22 m_plotDrawingSheet( true ),
23 m_printMaskLayer(),
24 m_drillShapeOption( 2 )
25{
26
27}
JOB_EXPORT_PCB_PLOT(PLOT_FORMAT aFormat, const std::string &aType, bool aOutputIsDirectory, bool aIsCli)
An simple container class that lets us dispatch output jobs to kifaces.
Definition: job.h:79