LibrePCB Developers Documentation
cmdnetclassadd.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_CMDNETCLASSADD_H
21#define LIBREPCB_EDITOR_CMDNETCLASSADD_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "../../undocommand.h"
27
29
30#include <QtCore>
31
32/*******************************************************************************
33 * Namespace / Forward Declarations
34 ******************************************************************************/
35namespace librepcb {
36
37class Circuit;
38class NetClass;
39
40namespace editor {
41
42/*******************************************************************************
43 * Class CmdNetClassAdd
44 ******************************************************************************/
45
49class CmdNetClassAdd final : public UndoCommand {
50public:
51 // Constructors / Destructor
52 CmdNetClassAdd(Circuit& circuit, const ElementName& name) noexcept;
53 ~CmdNetClassAdd() noexcept;
54
55 // Getters
56 NetClass* getNetClass() const noexcept { return mNetClass; }
57
58private:
59 // Private Methods
60
62 bool performExecute() override;
63
65 void performUndo() override;
66
68 void performRedo() override;
69
70 // Private Member Variables
71
75};
76
77/*******************************************************************************
78 * End of File
79 ******************************************************************************/
80
81} // namespace editor
82} // namespace librepcb
83
84#endif
The Circuit class represents all electrical connections in a project (drawn in the schematics)
Definition: circuit.h:70
The NetClass class.
Definition: netclass.h:46
The CmdNetClassAdd class.
Definition: cmdnetclassadd.h:49
void performRedo() override
Redo the command.
Definition: cmdnetclassadd.cpp:67
NetClass * getNetClass() const noexcept
Definition: cmdnetclassadd.h:56
CmdNetClassAdd(Circuit &circuit, const ElementName &name) noexcept
Definition: cmdnetclassadd.cpp:40
Circuit & mCircuit
Definition: cmdnetclassadd.h:72
~CmdNetClassAdd() noexcept
Definition: cmdnetclassadd.cpp:48
void performUndo() override
Undo the command.
Definition: cmdnetclassadd.cpp:63
ElementName mName
Definition: cmdnetclassadd.h:73
bool performExecute() override
Execute the command the first time.
Definition: cmdnetclassadd.cpp:55
NetClass * mNetClass
Definition: cmdnetclassadd.h:74
The UndoCommand class represents a command which you can undo/redo.
Definition: undocommand.h:46
Definition: occmodel.cpp:77
type_safe::constrained_type< QString, ElementNameConstraint, ElementNameVerifier > ElementName
Definition: elementname.h:84