2022-12-11 13:57:21 -05:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2022-12-11 13:57:21 -05: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMAND_EXPORT_PCB_GERBERS_H
|
|
|
|
#define COMMAND_EXPORT_PCB_GERBERS_H
|
|
|
|
|
2023-08-19 11:46:18 -04:00
|
|
|
#include "command_pcb_export_gerber.h"
|
2022-12-11 13:57:21 -05:00
|
|
|
|
|
|
|
namespace CLI
|
|
|
|
{
|
2023-08-19 11:51:50 -04:00
|
|
|
class PCB_EXPORT_GERBERS_COMMAND : public PCB_EXPORT_GERBER_COMMAND
|
2022-12-11 13:57:21 -05:00
|
|
|
{
|
|
|
|
public:
|
2023-08-19 11:51:50 -04:00
|
|
|
PCB_EXPORT_GERBERS_COMMAND();
|
2022-12-11 13:57:21 -05:00
|
|
|
|
2023-01-01 11:50:40 -05:00
|
|
|
protected:
|
|
|
|
int doPerform( KIWAY& aKiway ) override;
|
2022-12-11 13:57:21 -05:00
|
|
|
};
|
|
|
|
} // namespace CLI
|
|
|
|
|
|
|
|
#endif
|