Ref T199, added some utility functions

* tag object can be read from data directory
* isNull
* some renamings
This commit is contained in:
Klaus Basan
2017-12-25 13:10:15 +01:00
parent 60b90d6582
commit 9ec3d69eaa
4 changed files with 56 additions and 14 deletions

View File

@@ -42,6 +42,9 @@ namespace BlackMisc
//! Get the pid.
qint64 processId() const { return m_pid; }
//! Empty process info
bool isNull() const { return m_pid == 0 && m_name.isEmpty(); }
//! Get the process name.
const QString &processName() const { return m_name; }