summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-01 17:59:15 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-01 17:59:15 +0300
commitc735249c6bc90c0e723c42e7c5b1276579609ec9 (patch)
tree631089153777345ec85b2c36c4da6a4777ee6fe8 /src/net/eathena
parent4f9bf0141d5b96372eec33a545ba546a9622426c (diff)
downloadplus-c735249c6bc90c0e723c42e7c5b1276579609ec9.tar.gz
plus-c735249c6bc90c0e723c42e7c5b1276579609ec9.tar.bz2
plus-c735249c6bc90c0e723c42e7c5b1276579609ec9.tar.xz
plus-c735249c6bc90c0e723c42e7c5b1276579609ec9.zip
Move requestSellList from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/buysellhandler.cpp4
-rw-r--r--src/net/eathena/buysellhandler.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/eathena/buysellhandler.cpp b/src/net/eathena/buysellhandler.cpp
index ce8b220d5..23228addd 100644
--- a/src/net/eathena/buysellhandler.cpp
+++ b/src/net/eathena/buysellhandler.cpp
@@ -128,4 +128,8 @@ void BuySellHandler::processNpcSellResponse(Net::MessageIn &msg)
}
}
+void BuySellHandler::requestSellList(const std::string &nick A_UNUSED) const
+{
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/buysellhandler.h b/src/net/eathena/buysellhandler.h
index 9f2df6089..ce5e34ae6 100644
--- a/src/net/eathena/buysellhandler.h
+++ b/src/net/eathena/buysellhandler.h
@@ -39,6 +39,10 @@ class BuySellHandler final : public MessageHandler, public Ea::BuySellHandler
void handleMessage(Net::MessageIn &msg) override final;
+ void requestSellList(const std::string &nick)
+ const override final;
+
+ protected:
static void processNpcBuy(Net::MessageIn &msg);
static void processNpcSellResponse(Net::MessageIn &msg);