diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-06 20:02:53 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-06 20:02:53 +0900 |
commit | 79403a004129852af10f0a7d9b8dca0276724d28 (patch) | |
tree | f4d18f247dab5fb14164dfa9047146841ac3bbe7 /lib/jobs/checkauthmethods.h | |
parent | b97e759502aa1bcfee72029ed5ea1eda12af12b8 (diff) | |
download | libquotient-79403a004129852af10f0a7d9b8dca0276724d28.tar.gz libquotient-79403a004129852af10f0a7d9b8dca0276724d28.zip |
Remove unused job classes.
Diffstat (limited to 'lib/jobs/checkauthmethods.h')
-rw-r--r-- | lib/jobs/checkauthmethods.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/jobs/checkauthmethods.h b/lib/jobs/checkauthmethods.h deleted file mode 100644 index 647f3db6..00000000 --- a/lib/jobs/checkauthmethods.h +++ /dev/null @@ -1,40 +0,0 @@ -/****************************************************************************** - * Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#pragma once - -#include "basejob.h" - -namespace QMatrixClient -{ - class CheckAuthMethods : public BaseJob - { - public: - CheckAuthMethods(); - virtual ~CheckAuthMethods(); - - QString session(); - - protected: - Status parseJson(const QJsonDocument& data) override; - - private: - class Private; - Private* d; - }; -} |