Rename plot_auxiliary_data.h file to gbr_metadata.h, according to the class names defined by this file
This commit is contained in:
parent
144549ebca
commit
93e75af388
|
@ -29,7 +29,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <fctsys.h>
|
#include <fctsys.h>
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
|
|
||||||
|
|
||||||
std::string GBR_APERTURE_METADATA::FormatAttribute( GBR_APERTURE_ATTRIB aAttribute )
|
std::string GBR_APERTURE_METADATA::FormatAttribute( GBR_APERTURE_ATTRIB aAttribute )
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
#include <build_version.h>
|
#include <build_version.h>
|
||||||
|
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
|
|
||||||
|
|
||||||
GERBER_PLOTTER::GERBER_PLOTTER()
|
GERBER_PLOTTER::GERBER_PLOTTER()
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
#include <gerber_file_image_list.h>
|
#include <gerber_file_image_list.h>
|
||||||
#include <gerbview_frame.h>
|
#include <gerbview_frame.h>
|
||||||
#include <reporter.h>
|
#include <reporter.h>
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
#include <html_messagebox.h>
|
#include <html_messagebox.h>
|
||||||
#include <view/view.h>
|
#include <view/view.h>
|
||||||
|
|
||||||
|
|
|
@ -23,15 +23,15 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* a class to handle special data during plot.
|
* a class to handle special data (items attributes) during plot.
|
||||||
* used in Gerber plotter to generate auxiliary data during plot
|
* used in Gerber plotter to generate auxiliary data during plot
|
||||||
* (for instance info associated to flashed pads)
|
* (for instance info associated to apertures and flashed pads)
|
||||||
*
|
*
|
||||||
* @file plot_auxiliary_data.h
|
* @file gbr_metadata.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef PLOT_EXTRA_DATA_H
|
#ifndef GBR_METADATA_H
|
||||||
#define PLOT_EXTRA_DATA_H
|
#define GBR_METADATA_H
|
||||||
|
|
||||||
#include <gbr_netlist_metadata.h>
|
#include <gbr_netlist_metadata.h>
|
||||||
|
|
||||||
|
@ -188,4 +188,4 @@ wxString FormatStringFromGerber( const wxString& aString );
|
||||||
bool FormatNetAttribute( std::string& aPrintedText, std::string& aLastNetAttributes,
|
bool FormatNetAttribute( std::string& aPrintedText, std::string& aLastNetAttributes,
|
||||||
GBR_NETLIST_METADATA* aData, bool& aClearPreviousAttributes );
|
GBR_NETLIST_METADATA* aData, bool& aClearPreviousAttributes );
|
||||||
|
|
||||||
#endif // PLOT_EXTRA_DATA_H
|
#endif // GBR_METADATA_H
|
|
@ -44,7 +44,7 @@
|
||||||
#include <gendrill_gerber_writer.h>
|
#include <gendrill_gerber_writer.h>
|
||||||
#include <wildcards_and_files_ext.h>
|
#include <wildcards_and_files_ext.h>
|
||||||
#include <reporter.h>
|
#include <reporter.h>
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
#include <class_module.h>
|
#include <class_module.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
#include <gerber_jobfile_writer.h>
|
#include <gerber_jobfile_writer.h>
|
||||||
#include <wildcards_and_files_ext.h>
|
#include <wildcards_and_files_ext.h>
|
||||||
#include <reporter.h>
|
#include <reporter.h>
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
|
|
||||||
|
|
||||||
GERBER_JOBFILE_WRITER::GERBER_JOBFILE_WRITER( BOARD* aPcb, REPORTER* aReporter )
|
GERBER_JOBFILE_WRITER::GERBER_JOBFILE_WRITER( BOARD* aPcb, REPORTER* aReporter )
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
|
|
||||||
#include <pcbnew.h>
|
#include <pcbnew.h>
|
||||||
#include <pcbplot.h>
|
#include <pcbplot.h>
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
|
|
||||||
// Local
|
// Local
|
||||||
/* Plot a solder mask layer.
|
/* Plot a solder mask layer.
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
#include <pcbnew.h>
|
#include <pcbnew.h>
|
||||||
#include <pcbplot.h>
|
#include <pcbplot.h>
|
||||||
#include <plot_auxiliary_data.h>
|
#include <gbr_metadata.h>
|
||||||
|
|
||||||
/* class BRDITEMS_PLOTTER is a helper class to plot board items
|
/* class BRDITEMS_PLOTTER is a helper class to plot board items
|
||||||
* and a group of board items
|
* and a group of board items
|
||||||
|
|
Loading…
Reference in New Issue