v2.0.0
Loading...
Searching...
No Matches
dipoletreeitem.cpp
Go to the documentation of this file.
1//=============================================================================================================
12
13//=============================================================================================================
14// INCLUDES
15//=============================================================================================================
16
17#include "dipoletreeitem.h"
18
19DipoleTreeItem::DipoleTreeItem(const QString& text, const INVLIB::InvEcdSet& set, int type)
20 : AbstractTreeItem(text, type)
21 , m_ecdSet(set)
22{
23}
24
26{
27 return m_ecdSet;
28}
Tree item wrapping a fitted INVLIB::InvEcdSet of equivalent current dipoles.
AbstractTreeItem(const QString &text="", int type=AbstractItem)
int type() const override
DipoleTreeItem(const QString &text, const INVLIB::InvEcdSet &set, int type=AbstractTreeItem::DipoleItem)
const INVLIB::InvEcdSet & ecdSet() const
Holds a set of Electric Current Dipoles.
Definition inv_ecd_set.h:64