minor refactor

This commit is contained in:
arm64v8a
2023-05-22 11:07:14 +09:00
parent 1b050dd3fb
commit c5122b77e4
98 changed files with 1173 additions and 1142 deletions

View File

@@ -1,8 +1,9 @@
#pragma once
#include <memory>
#include <QProcess>
namespace NekoRay::sys {
namespace NekoGui_sys {
class ExternalProcess : public QProcess {
public:
QString tag;
@@ -44,7 +45,7 @@ namespace NekoRay::sys {
};
// 手动管理
inline std::list<QSharedPointer<ExternalProcess>> running_ext;
inline std::list<std::shared_ptr<ExternalProcess>> running_ext;
inline QAtomicInt logCounter;
} // namespace NekoRay::sys
} // namespace NekoGui_sys