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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMAND_EXPORT_PCBNEW_H
|
|
|
|
#define COMMAND_EXPORT_PCBNEW_H
|
|
|
|
|
|
|
|
#include "command.h"
|
|
|
|
|
|
|
|
namespace CLI
|
|
|
|
{
|
2022-10-04 20:06:50 -04:00
|
|
|
struct PCB_COMMAND : public COMMAND
|
2022-10-04 01:53:37 +00:00
|
|
|
{
|
2023-08-22 13:42:16 +00:00
|
|
|
PCB_COMMAND() : COMMAND( "pcb" ) {
|
|
|
|
m_argParser.add_description( UTF8STDSTR( _( "PCB" ) ) );
|
|
|
|
}
|
2022-10-04 01:53:37 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|