kicad-source/kicad/cli/command_pcb_export_3d.h

41 lines
1.3 KiB
C
Raw Permalink Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
*
* 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_3D_H
#define COMMAND_EXPORT_PCB_3D_H
#include "command.h"
#include "jobs/job_export_pcb_3d.h"
namespace CLI
{
struct PCB_EXPORT_3D_COMMAND : public COMMAND
{
2023-08-31 22:17:14 -04:00
PCB_EXPORT_3D_COMMAND( const std::string& aName,
const std::string& aDescription,
JOB_EXPORT_PCB_3D::FORMAT aFormat = JOB_EXPORT_PCB_3D::FORMAT::UNKNOWN );
protected:
int doPerform( KIWAY& aKiway ) override;
JOB_EXPORT_PCB_3D::FORMAT m_format;
};
}
#endif