KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcad_plane.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 (C) 2007, 2008, 2012 Alexander Lunev <[email protected]>
5 * Copyright (C) 2012-2023 KiCad Developers, see AUTHORS.TXT for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef PCAD_PLANE_H
26#define PCAD_PLANE_H
27
28#include <pcad/pcad_polygon.h>
29
30class BOARD;
31class wxString;
32class XNODE;
33
34namespace PCAD2KICAD {
35
37{
38public:
39 PCAD_PLANE( PCAD_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer );
41
42 virtual bool Parse( XNODE* aNode, const wxString& aDefaultUnits,
43 const wxString& aActualConversion ) override;
44};
45
46} // namespace PCAD2KICAD
47
48#endif // PCB_PLANE_H_
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:281
virtual bool Parse(XNODE *aNode, const wxString &aDefaultUnits, const wxString &aActualConversion) override
Definition: pcad_plane.cpp:46
Hold an XML or S-expression element.
Definition: xnode.h:44