summaryrefslogtreecommitdiff
path: root/src/net/ea/partyhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/ea/partyhandler.cpp')
-rw-r--r--src/net/ea/partyhandler.cpp80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/net/ea/partyhandler.cpp b/src/net/ea/partyhandler.cpp
deleted file mode 100644
index 23f7347b9..000000000
--- a/src/net/ea/partyhandler.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2008 Lloyd Bryant <lloyd_bryant@netzero.net>
- * Copyright (C) 2011-2017 The ManaPlus Developers
- *
- * This file is part of The ManaPlus Client.
- *
- * 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
- * the Free Software Foundation; either version 2 of the License, or
- * any later version.
- *
- * 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.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "net/ea/partyhandler.h"
-
-#include "party.h"
-
-#include "net/ea/partyrecv.h"
-
-#include "gui/widgets/tabs/chat/partytab.h"
-
-#include "utils/delete2.h"
-
-#include "debug.h"
-
-namespace Ea
-{
-
-PartyHandler::PartyHandler() :
- Net::PartyHandler()
-{
- PartyRecv::mShareExp = PartyShare::UNKNOWN;
- PartyRecv::mShareItems = PartyShare::UNKNOWN;
- taParty = Party::getParty(1);
-}
-
-PartyHandler::~PartyHandler()
-{
- delete2(partyTab);
- taParty = nullptr;
-}
-
-void PartyHandler::join(const int partyId A_UNUSED) const
-{
-}
-
-void PartyHandler::reload()
-{
- taParty = Party::getParty(1);
-}
-
-void PartyHandler::clear() const
-{
- taParty = nullptr;
-}
-
-ChatTab *PartyHandler::getTab() const
-{
- return partyTab;
-}
-
-PartyShareT PartyHandler::getShareExperience() const
-{
- return PartyRecv::mShareExp;
-}
-
-PartyShareT PartyHandler::getShareItems() const
-{
- return PartyRecv::mShareItems;
-}
-
-} // namespace Ea