~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/net/tmwa/guildhandler.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-01-10 11:00:12 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20140110110012-4mt9zewufrl9bbtj
Tags: 1.4.1.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  The ManaPlus Client
3
3
 *  Copyright (C) 2009-2010  The Mana Developers
4
 
 *  Copyright (C) 2011-2013  The ManaPlus Developers
 
4
 *  Copyright (C) 2011-2014  The ManaPlus Developers
5
5
 *
6
6
 *  This file is part of The ManaPlus Client.
7
7
 *
53
53
 
54
54
        void leave(const int guildId) const override final;
55
55
 
56
 
        void kick(const GuildMember *const member,
57
 
                  const std::string &reason) const override final;
 
56
        void kick(const GuildMember *restrict const member,
 
57
                  const std::string &restrict reason) const override final;
58
58
 
59
59
        void chat(const int guildId,
60
60
                  const std::string &text) const override final;
66
66
        void changeMemberPostion(const GuildMember *const member,
67
67
                                 const int level) const override final;
68
68
 
69
 
        void changeNotice(const int guildId, const std::string &msg1,
70
 
                          const std::string &msg2) const override final;
 
69
        void changeNotice(const int guildId,
 
70
                          const std::string &restrict msg1,
 
71
                          const std::string &restrict msg2)
 
72
                          const override final;
71
73
};
72
74
 
73
75
    extern Ea::GuildTab *guildTab;