fort/src/ui/log/logentryprocnew.h
Nodir Temirkhodjaev 63286cc7c3 Fix Clazy warnings.
2019-02-08 13:19:20 +05:00

28 lines
601 B
C++

#ifndef LOGENTRYPROCNEW_H
#define LOGENTRYPROCNEW_H
#include "logentry.h"
class LogEntryProcNew : public LogEntry
{
public:
explicit LogEntryProcNew(quint32 pid = 0,
const QString &kernelPath = QString());
LogEntry::LogType type() const override { return ProcNew; }
quint32 pid() const { return m_pid; }
void setPid(quint32 pid);
QString kernelPath() const { return m_kernelPath; }
void setKernelPath(const QString &kernelPath);
QString path() const;
private:
quint32 m_pid;
QString m_kernelPath;
};
#endif // LOGENTRYPROCNEW_H