mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 12:47:44 +00:00
17 lines
305 B
C
17 lines
305 B
C
|
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QFile>
|
||
|
#include <QObject>
|
||
|
#include <QProcess>
|
||
|
|
||
|
class ProcessLogger : public QObject
|
||
|
{
|
||
|
public:
|
||
|
explicit ProcessLogger(QProcess *process);
|
||
|
|
||
|
private:
|
||
|
QFile file;
|
||
|
};
|