2022-10-04 01:53:37 +00: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-10-04 01:53:37 +00: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/>.
|
|
|
|
*/
|
|
|
|
|
2023-08-19 13:39:40 -04:00
|
|
|
#ifndef COMMAND_EXPORT_PCB_3D_H
|
|
|
|
#define COMMAND_EXPORT_PCB_3D_H
|
2022-10-04 01:53:37 +00:00
|
|
|
|
|
|
|
#include "command.h"
|
2023-08-19 13:39:40 -04:00
|
|
|
#include "jobs/job_export_pcb_3d.h"
|
2022-10-04 01:53:37 +00:00
|
|
|
|
|
|
|
namespace CLI
|
|
|
|
{
|
2023-08-19 13:39:40 -04:00
|
|
|
struct PCB_EXPORT_3D_COMMAND : public COMMAND
|
2022-10-04 01:53:37 +00:00
|
|
|
{
|
2023-08-31 22:17:14 -04:00
|
|
|
PCB_EXPORT_3D_COMMAND( const std::string& aName,
|
|
|
|
const std::string& aDescription,
|
2023-08-19 13:39:40 -04:00
|
|
|
JOB_EXPORT_PCB_3D::FORMAT aFormat = JOB_EXPORT_PCB_3D::FORMAT::UNKNOWN );
|
2022-10-04 01:53:37 +00:00
|
|
|
|
2023-01-01 11:50:40 -05:00
|
|
|
protected:
|
|
|
|
int doPerform( KIWAY& aKiway ) override;
|
2023-08-19 13:39:40 -04:00
|
|
|
JOB_EXPORT_PCB_3D::FORMAT m_format;
|
2022-10-04 01:53:37 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|