mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
8981b8615a
Closes: #7975
17 lines
246 B
C++
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;
|
|
};
|