summaryrefslogtreecommitdiffstats
path: root/logic/FileSystem.h
blob: e70f31656aa48f008c22a8e46e5dbcd8b6c5060e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);
}