mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:35:31 +00:00
Mark ODB++ as export-only
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20493
This commit is contained in:
parent
151cb01795
commit
fd94488289
@ -56,11 +56,12 @@ public:
|
||||
|
||||
~PCB_IO_ODBPP() override;
|
||||
|
||||
void SaveBoard( const wxString& aFileName, BOARD* aBoard,
|
||||
const std::map<std::string, UTF8>* aProperties = nullptr ) override;
|
||||
void SaveBoard( const wxString& aFileName, BOARD* aBoard,
|
||||
const std::map<std::string, UTF8>* aProperties = nullptr ) override;
|
||||
|
||||
const IO_BASE::IO_FILE_DESC GetBoardFileDesc() const override
|
||||
{
|
||||
return IO_BASE::IO_FILE_DESC( _HKI( "ODB++ Production File" ), { "ZIP" } );
|
||||
return IO_BASE::IO_FILE_DESC( _HKI( "ODB++ Production File" ), { "ZIP" }, {}, true, false, true );
|
||||
}
|
||||
|
||||
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
|
||||
|
Loading…
Reference in New Issue
Block a user