Loading [MathJax]/jax/output/HTML-CSS/config.js
OGS
ProcessVarItem.h
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #include "Base/TreeItem.h"
14 
19 class ProcessVarItem final : public TreeItem
20 {
21 public:
23  ProcessVarItem(const QList<QVariant>& data, TreeItem* parent)
24  : TreeItem(data, parent)
25  {
26  }
27 
28  QString getName() const { return data(0).toString(); }
29 };
Definition of the TreeItem class.
A TreeItem representing process variable information.
QString getName() const
ProcessVarItem(const QList< QVariant > &data, TreeItem *parent)
Constructor.
Objects nodes for the TreeModel.
Definition: TreeItem.h:28
virtual QVariant data(int column) const
Definition: TreeItem.cpp:94