/* * This file Copyright (C) 2012-2016 Mnemosyne LLC * * It may be used under the GNU GPL versions 2 or 3 * or any future license endorsed by Mnemosyne LLC. * */ #pragma once #include #include #include class AddData { public: enum { NONE, MAGNET, URL, FILENAME, METAINFO }; public: AddData() = default; explicit AddData(QString const& str) { set(str); } int set(QString const&); QByteArray toBase64() const; QString readableName() const; QString readableShortName() const; static bool isSupported(QString const& str) { return AddData(str).type != NONE; } int type = NONE; QByteArray metainfo; QString filename; QString magnet; QUrl url; };