mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 09:59:59 +03:00
13 lines
260 B
C++
13 lines
260 B
C++
// Licensed under the Apache-2.0 license. See README.md for details.
|
|
|
|
#pragma once
|
|
|
|
#include "Exception.h"
|
|
|
|
namespace FS
|
|
{
|
|
DECLARE_EXCEPTION(FileSystem);
|
|
|
|
void write(const QString &filename, const QByteArray &data);
|
|
QByteArray read(const QString &filename);
|
|
}
|