mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Cleanup: remove eplicit constructors and unused member variable
Remove the explicit constructor in DiveComputerNode: Just use classical C-style struct initialization. Moreover, remove the empty constructor and destructor of DiveComputerList. The variable DiveComputerList::dcWorkingMap was unused. Remove. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
b0cc416954
commit
8e8cd7a8d9
2 changed files with 1 additions and 15 deletions
|
|
@ -8,8 +8,6 @@
|
|||
|
||||
class DiveComputerNode {
|
||||
public:
|
||||
DiveComputerNode(QString m, uint32_t d, QString s, QString f, QString n)
|
||||
: model(m), deviceId(d), serialNumber(s), firmware(f), nickName(n) {};
|
||||
bool operator==(const DiveComputerNode &a) const;
|
||||
bool operator!=(const DiveComputerNode &a) const;
|
||||
bool changesValues(const DiveComputerNode &b) const;
|
||||
|
|
@ -23,15 +21,12 @@ public:
|
|||
|
||||
class DiveComputerList {
|
||||
public:
|
||||
DiveComputerList();
|
||||
~DiveComputerList();
|
||||
const DiveComputerNode *getExact(const QString &m, uint32_t d);
|
||||
const DiveComputerNode *get(const QString &m);
|
||||
void addDC(QString m, uint32_t d, QString n = QString(), QString s = QString(), QString f = QString());
|
||||
DiveComputerNode matchDC(const QString &m, uint32_t d);
|
||||
DiveComputerNode matchModel(const QString &m);
|
||||
QMultiMap<QString, DiveComputerNode> dcMap;
|
||||
QMultiMap<QString, DiveComputerNode> dcWorkingMap;
|
||||
};
|
||||
|
||||
extern DiveComputerList dcList;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue