mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
16 lines
326 B
C++
16 lines
326 B
C++
#pragma once
|
|
|
|
#include "qsintercept.hpp"
|
|
#include "scan.hpp"
|
|
#include "singleton.hpp"
|
|
|
|
class EngineContext {
|
|
public:
|
|
explicit EngineContext(const QmlScanner& scanner);
|
|
|
|
private:
|
|
const QmlScanner& scanner;
|
|
QQmlEngine engine;
|
|
QsInterceptNetworkAccessManagerFactory interceptFactory;
|
|
SingletonRegistry singletonRegistry;
|
|
};
|