LibrePCB Developers Documentation
boardpickplacegenerator.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_BOARDPICKPLACEGENERATOR_H
21#define LIBREPCB_CORE_BOARDPICKPLACEGENERATOR_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
28#include <QtCore>
29
30#include <memory>
31
32/*******************************************************************************
33 * Namespace / Forward Declarations
34 ******************************************************************************/
35namespace librepcb {
36
37class Board;
38class PickPlaceData;
39
40/*******************************************************************************
41 * Class BoardPickPlaceGenerator
42 ******************************************************************************/
43
48 Q_DECLARE_TR_FUNCTIONS(BoardPickPlaceGenerator)
49
50public:
51 // Constructors / Destructor
54 explicit BoardPickPlaceGenerator(const Board& board,
55 const Uuid& assemblyVariant) noexcept;
56 ~BoardPickPlaceGenerator() noexcept;
57
58 // General Methods
59 std::shared_ptr<PickPlaceData> generate() noexcept;
60
61 // Operator Overloadings
63 delete;
64
65private:
66 const Board& mBoard;
68};
69
70/*******************************************************************************
71 * End of File
72 ******************************************************************************/
73
74} // namespace librepcb
75
76#endif
The Board class represents a PCB of a project and is always part of a circuit.
Definition: board.h:73
The BoardPickPlaceGenerator class.
Definition: boardpickplacegenerator.h:47
const Board & mBoard
Definition: boardpickplacegenerator.h:66
BoardPickPlaceGenerator(const BoardPickPlaceGenerator &other)=delete
const Uuid mAssemblyVariant
Definition: boardpickplacegenerator.h:67
std::shared_ptr< PickPlaceData > generate() noexcept
Definition: boardpickplacegenerator.cpp:59
~BoardPickPlaceGenerator() noexcept
Definition: boardpickplacegenerator.cpp:52
The librepcb::PickPlaceData class represents the content of a pick&place file.
Definition: pickplacedata.h:141
The Uuid class is a replacement for QUuid to get UUID strings without {} braces.
Definition: uuid.h:58
Definition: occmodel.cpp:77