LibrePCB Developers Documentation
bomgenerator.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_BOMGENERATOR_H
21#define LIBREPCB_CORE_BOMGENERATOR_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27
28#include <memory>
29
30/*******************************************************************************
31 * Namespace / Forward Declarations
32 ******************************************************************************/
33namespace librepcb {
34
35class Board;
36class Bom;
37class Project;
38class Uuid;
39
40/*******************************************************************************
41 * Class BomGenerator
42 ******************************************************************************/
43
47class BomGenerator final {
48 Q_DECLARE_TR_FUNCTIONS(BoardBomGenerator)
49
50public:
51 // Constructors / Destructor
52 BomGenerator() = delete;
53 BomGenerator(const BomGenerator& other) = delete;
54 explicit BomGenerator(const Project& project) noexcept;
55 ~BomGenerator() noexcept;
56
57 // Setters
58 void setAdditionalAttributes(const QStringList& attributes) noexcept {
59 mAdditionalAttributes = attributes;
60 }
61
62 // General Methods
63 std::shared_ptr<Bom> generate(const Board* board,
64 const Uuid& assemblyVariant) noexcept;
65
66 // Operator Overloadings
67 BomGenerator& operator=(const BomGenerator& rhs) = delete;
68
69private: // Methods
70 static void removeSubString(QString& str, const QString& substr) noexcept;
71
72private: // Data
75};
76
77/*******************************************************************************
78 * End of File
79 ******************************************************************************/
80
81} // namespace librepcb
82
83#endif
The Board class represents a PCB of a project and is always part of a circuit.
Definition: board.h:73
The BomGenerator class.
Definition: bomgenerator.h:47
std::shared_ptr< Bom > generate(const Board *board, const Uuid &assemblyVariant) noexcept
Definition: bomgenerator.cpp:59
static void removeSubString(QString &str, const QString &substr) noexcept
Definition: bomgenerator.cpp:205
BomGenerator(const BomGenerator &other)=delete
const Project & mProject
Definition: bomgenerator.h:73
BomGenerator & operator=(const BomGenerator &rhs)=delete
~BomGenerator() noexcept
Definition: bomgenerator.cpp:52
void setAdditionalAttributes(const QStringList &attributes) noexcept
Definition: bomgenerator.h:58
QStringList mAdditionalAttributes
Definition: bomgenerator.h:74
The Project class represents a whole (opened) project with all its content.
Definition: project.h:71
The Uuid class is a replacement for QUuid to get UUID strings without {} braces.
Definition: uuid.h:58
Definition: occmodel.cpp:77