API Documentation
Loading...
Searching...
No Matches
CookieManager.h
Go to the documentation of this file.
1#pragma once
2#ifdef Q_OS_WASM
3#include <QObject>
4namespace NDEVR
5{
6 class String;
7 class File;
8 class CookieManager : public QObject
9 {
10 public:
11 explicit CookieManager(QObject *parent = nullptr);
12
13 bool hasFile(const File& file);
14 bool saveFile(const File& file);
15 bool openFile(const File& file);
16 bool removeFile(const File& file);
17 bool moveFile(const File& from, const File& to);
18 QByteArray loadCache(const String& name);
19 void saveCache(const String& name, const QByteArray& data);
20 };
21}
22#endif
Definition ACIColor.h:37