GCC Code Coverage Report
Directory: src/ Exec Total Coverage
File: src/net/tmwa/auctionhandler.cpp Lines: 0 13 0.0 %
Date: 2021-03-17 Branches: 0 0 0.0 %

Line Branch Exec Source
1
/*
2
 *  The ManaPlus Client
3
 *  Copyright (C) 2011-2019  The ManaPlus Developers
4
 *  Copyright (C) 2019-2021  Andrei Karas
5
 *
6
 *  This file is part of The ManaPlus Client.
7
 *
8
 *  This program is free software; you can redistribute it and/or modify
9
 *  it under the terms of the GNU General Public License as published by
10
 *  the Free Software Foundation; either version 2 of the License, or
11
 *  any later version.
12
 *
13
 *  This program is distributed in the hope that it will be useful,
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 *  GNU General Public License for more details.
17
 *
18
 *  You should have received a copy of the GNU General Public License
19
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 */
21
22
#include "net/tmwa/auctionhandler.h"
23
24
#include "debug.h"
25
26
namespace TmwAthena
27
{
28
29
AuctionHandler::AuctionHandler()
30
{
31
    auctionHandler = this;
32
}
33
34
AuctionHandler::~AuctionHandler()
35
{
36
    auctionHandler = nullptr;
37
}
38
39
void AuctionHandler::cancelReg() const
40
{
41
}
42
43
void AuctionHandler::setItem(const Item *const item A_UNUSED,
44
                             const int amount A_UNUSED) const
45
{
46
}
47
48
void AuctionHandler::reg(const int currentPrice A_UNUSED,
49
                         const int maxPrice A_UNUSED,
50
                         const int hours A_UNUSED) const
51
{
52
}
53
54
void AuctionHandler::cancel(const int auctionId A_UNUSED) const
55
{
56
}
57
58
void AuctionHandler::close(const int auctionId A_UNUSED) const
59
{
60
}
61
62
void AuctionHandler::bid(const int auctionId A_UNUSED,
63
                         const int money A_UNUSED) const
64
{
65
}
66
67
void AuctionHandler::search(const AuctionSearchTypeT type A_UNUSED,
68
                            const int auctionId A_UNUSED,
69
                            const std::string &text A_UNUSED,
70
                            const int page A_UNUSED) const
71
{
72
}
73
74
void AuctionHandler::buy() const
75
{
76
}
77
78
void AuctionHandler::sell() const
79
{
80
}
81
82
}  // namespace TmwAthena