KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_io_fabmaster.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef PCB_IO_FABMASTER_H_
21#define FABMASTER_PLUGIN_H_
22
23
24#include "import_fabmaster.h"
25
26#include <pcb_io/pcb_io.h>
27#include <pcb_io/pcb_io_mgr.h>
28
30{
31public:
33 {
34 return IO_BASE::IO_FILE_DESC( _HKI( "Fabmaster PCB files" ), { "txt", "fab" } );
35 }
36
38 {
39 // No library description for this plugin
40 return IO_BASE::IO_FILE_DESC( wxEmptyString, {} );
41 }
42
43 bool CanReadBoard( const wxString& aFileName ) const override;
44
45 BOARD* LoadBoard( const wxString& aFileName, BOARD* aAppendToMe,
46 const std::map<std::string, UTF8>* aProperties = nullptr, PROJECT* aProject = nullptr ) override;
47
48 long long GetLibraryTimestamp( const wxString& aLibraryPath ) const override
49 {
50 // No support for libraries....
51 return 0;
52 }
53
56
57private:
59};
60
61#endif // PCB_IO_FABMASTER_H_
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
PCB_IO_FABMASTER()
Pcbnew PLUGIN for FABMASTER ASCII *.txt / *.fab format.
BOARD * LoadBoard(const wxString &aFileName, BOARD *aAppendToMe, const std::map< std::string, UTF8 > *aProperties=nullptr, PROJECT *aProject=nullptr) override
Load information from some input file format that this PCB_IO implementation knows about into either ...
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
Get the descriptor for the library container that this IO plugin operates on.
const IO_BASE::IO_FILE_DESC GetBoardFileDesc() const override
Returns board file description for the PCB_IO.
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
PCB_IO(const wxString &aName)
Definition pcb_io.h:342
Container for project specific data.
Definition project.h:62
#define _HKI(x)
Definition page_info.cpp:40
Container that describes file type info.
Definition io_base.h:43