LibrePCB Developers Documentation
boardd356netlistexport.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (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 <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_CORE_BOARDD356NETLISTEXPORT_H
21#define LIBREPCB_CORE_BOARDD356NETLISTEXPORT_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27
28/*******************************************************************************
29 * Namespace / Forward Declarations
30 ******************************************************************************/
31namespace librepcb {
32
33class Board;
34class FilePath;
35
36/*******************************************************************************
37 * Class BoardD356NetlistExport
38 ******************************************************************************/
39
44public:
45 // Constructors / Destructor
48 explicit BoardD356NetlistExport(const Board& board) noexcept;
49 ~BoardD356NetlistExport() noexcept;
50
51 // General Methods
52 QByteArray generate() const;
53
54 // Operator Overloadings
55 BoardD356NetlistExport& operator=(const BoardD356NetlistExport& rhs) = delete;
56
57private:
58 const Board& mBoard;
60};
61
62/*******************************************************************************
63 * End of File
64 ******************************************************************************/
65
66} // namespace librepcb
67
68#endif
The BoardD356NetlistExport class.
Definition: boardd356netlistexport.h:43
const Board & mBoard
Definition: boardd356netlistexport.h:58
QByteArray generate() const
Definition: boardd356netlistexport.cpp:60
QDateTime mCreationDateTime
Definition: boardd356netlistexport.h:59
~BoardD356NetlistExport() noexcept
Definition: boardd356netlistexport.cpp:53
BoardD356NetlistExport(const BoardD356NetlistExport &other)=delete
The Board class represents a PCB of a project and is always part of a circuit.
Definition: board.h:73
Definition: occmodel.cpp:77