2017-11-24 09:46:35 +00:00
|
|
|
#ifndef LOGENTRYPROCNEW_H
|
|
|
|
#define LOGENTRYPROCNEW_H
|
|
|
|
|
|
|
|
#include "logentry.h"
|
|
|
|
|
|
|
|
class LogEntryProcNew : public LogEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit LogEntryProcNew(quint32 pid = 0,
|
|
|
|
const QString &kernelPath = QString());
|
|
|
|
|
|
|
|
virtual LogEntry::LogType type() const { return ProcNew; }
|
|
|
|
|
|
|
|
quint32 pid() const { return m_pid; }
|
|
|
|
void setPid(quint32 pid);
|
|
|
|
|
|
|
|
QString kernelPath() const { return m_kernelPath; }
|
|
|
|
void setKernelPath(const QString &kernelPath);
|
|
|
|
|
2017-12-01 14:13:06 +00:00
|
|
|
QString path() const;
|
|
|
|
|
2017-11-24 09:46:35 +00:00
|
|
|
private:
|
|
|
|
quint32 m_pid;
|
|
|
|
QString m_kernelPath;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LOGENTRYPROCNEW_H
|