GCC Code Coverage Report
Directory: src/ Exec Total Coverage
File: src/net/auctionhandler.h Lines: 0 1 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
#ifndef NET_AUCTIONHANDLER_H
23
#define NET_AUCTIONHANDLER_H
24
25
#include "enums/net/auctionsearchtype.h"
26
27
#include <string>
28
29
#include "localconsts.h"
30
31
class Item;
32
33
namespace Net
34
{
35
36
class AuctionHandler notfinal
37
{
38
    public:
39
        AuctionHandler()
40
        { }
41
42
        A_DELETE_COPY(AuctionHandler)
43
44
        virtual ~AuctionHandler()
45
        { }
46
47
        virtual void cancelReg() const = 0;
48
49
        virtual void setItem(const Item *const item,
50
                             const int amount) const = 0;
51
52
        virtual void reg(const int currentPrice,
53
                         const int maxPrice,
54
                         const int hours) const = 0;
55
56
        virtual void cancel(const int auctionId) const = 0;
57
58
        virtual void close(const int auctionId) const = 0;
59
60
        virtual void bid(const int auctionId,
61
                         const int money) const = 0;
62
63
        virtual void search(const AuctionSearchTypeT type,
64
                            const int auctionId,
65
                            const std::string &text,
66
                            const int page) const = 0;
67
68
        virtual void buy() const = 0;
69
70
        virtual void sell() const = 0;
71
};
72
73
}  // namespace Net
74
75
extern Net::AuctionHandler *auctionHandler;
76
77
#endif  // NET_AUCTIONHANDLER_H