NOISSUE Various changes from multiauth that are unrelated to it

This commit is contained in:
Jan Dalheimer 2015-05-28 19:38:29 +02:00 committed by Petr Mrázek
parent 161dc66c2c
commit 3a8b238052
65 changed files with 2661 additions and 333 deletions

13
logic/FileSystem.h Normal file
View file

@ -0,0 +1,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);
}