2014-12-18 14:09:48 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-12-18 14:09:48 +03:00
|
|
|
*
|
|
|
|
* This program 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 General Public License
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SERVERFWD_H
|
|
|
|
#define SERVERFWD_H
|
|
|
|
|
|
|
|
#include <QSharedPointer>
|
|
|
|
|
|
|
|
namespace OCC {
|
|
|
|
|
|
|
|
class Account;
|
2020-08-12 16:23:11 +03:00
|
|
|
using AccountPtr = QSharedPointer<Account>;
|
2015-07-03 16:03:18 +03:00
|
|
|
class AccountState;
|
2020-08-12 16:23:11 +03:00
|
|
|
using AccountStatePtr = QExplicitlySharedDataPointer<AccountState>;
|
2014-12-18 14:09:48 +03:00
|
|
|
|
|
|
|
} // namespace OCC
|
|
|
|
|
|
|
|
#endif //SERVERFWD
|