LibrePCB Developers Documentation
cmdremoveunusedlibraryelements.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_EDITOR_CMDREMOVEUNUSEDLIBRARYELEMENTS_H
21#define LIBREPCB_EDITOR_CMDREMOVEUNUSEDLIBRARYELEMENTS_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "../../undocommandgroup.h"
27
28#include <QtCore>
29
30/*******************************************************************************
31 * Namespace / Forward Declarations
32 ******************************************************************************/
33namespace librepcb {
34
35class Project;
36
37namespace editor {
38
39/*******************************************************************************
40 * Class CmdRemoveUnusedLibraryElements
41 ******************************************************************************/
42
47public:
48 // Constructors / Destructor
49 CmdRemoveUnusedLibraryElements(Project& project) noexcept;
51
52private: // Methods
54 bool performExecute() override;
55
56private: // Data
58};
59
60/*******************************************************************************
61 * End of File
62 ******************************************************************************/
63
64} // namespace editor
65} // namespace librepcb
66
67#endif
The Project class represents a whole (opened) project with all its content.
Definition: project.h:71
The CmdRemoveUnusedLibraryElements class.
Definition: cmdremoveunusedlibraryelements.h:46
~CmdRemoveUnusedLibraryElements() noexcept
Definition: cmdremoveunusedlibraryelements.cpp:53
Project & mProject
Definition: cmdremoveunusedlibraryelements.h:57
CmdRemoveUnusedLibraryElements(Project &project) noexcept
Definition: cmdremoveunusedlibraryelements.cpp:48
bool performExecute() override
Execute the command the first time.
Definition: cmdremoveunusedlibraryelements.cpp:60
The UndoCommandGroup class makes it possible to pack multiple undo commands together (it acts as a pa...
Definition: undocommandgroup.h:44
Definition: occmodel.cpp:77