diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-27 16:24:01 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-27 16:24:01 -0600 |
commit | f67237cb69599753192c301f0f2eb38b88f7b57a (patch) | |
tree | a38b31447423e7971601f8a7e9528d204d7fcc26 /src/net/ea/gui/partytab.cpp | |
parent | 60f10c242fc4f99b0ab0f8d8c6d4b4acde0022cd (diff) | |
download | mana-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.gz mana-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.bz2 mana-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.xz mana-f67237cb69599753192c301f0f2eb38b88f7b57a.zip |
Clean up some ifdefs and start cleanup of parties
Diffstat (limited to 'src/net/ea/gui/partytab.cpp')
-rw-r--r-- | src/net/ea/gui/partytab.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/net/ea/gui/partytab.cpp b/src/net/ea/gui/partytab.cpp new file mode 100644 index 00000000..a55d2492 --- /dev/null +++ b/src/net/ea/gui/partytab.cpp @@ -0,0 +1,53 @@ +/* + * The Mana World + * Copyright (C) 2008 The Mana World Development Team + * + * This file is part of The Mana World. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include <guichan/widgets/label.hpp> + +#include "partytab.h" + +#include "net/messageout.h" + +#include "net/ea/party.h" +#include "net/ea/protocol.h" + +#include "resources/iteminfo.h" +#include "resources/itemdb.h" + +#include "utils/dtor.h" +#include "utils/gettext.h" +#include "utils/strprintf.h" +#include "utils/stringutils.h" + +PartyTab::PartyTab() : ChatTab(_("Party")) +{ +} + +PartyTab::~PartyTab() +{ +} + +void PartyTab::handleInput(std::string &msg) { + // TODO +} + +void PartyTab::handleCommand(std::string &msg) { + // TODO +} |