2
0
mirror of https://github.com/status-im/status-desktop.git synced 2025-02-28 22:41:09 +00:00
2022-10-20 20:34:35 +02:00

17 lines
246 B
C++

#pragma once
#include <QObject>
class QQmlEngine;
class CacheCleaner : public QObject
{
Q_OBJECT
public:
explicit CacheCleaner(QQmlEngine* engine);
Q_INVOKABLE void clearComponentCache() const;
private:
QQmlEngine* engine;
};