diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-29 14:30:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-29 14:30:20 +0300 |
commit | 0f9ec2061c4ad6157c3186f1cab9c4d8558980b5 (patch) | |
tree | 6259593b8436178ad8d981a96a8fd71eab9e04cc /src/guild.h | |
parent | 01773c71a4698c6f01fe70d864f922bda65506cb (diff) | |
download | mv-0f9ec2061c4ad6157c3186f1cab9c4d8558980b5.tar.gz mv-0f9ec2061c4ad6157c3186f1cab9c4d8558980b5.tar.bz2 mv-0f9ec2061c4ad6157c3186f1cab9c4d8558980b5.tar.xz mv-0f9ec2061c4ad6157c3186f1cab9c4d8558980b5.zip |
Add strong typed int type BeingId.
Diffstat (limited to 'src/guild.h')
-rw-r--r-- | src/guild.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/guild.h b/src/guild.h index 2ed9db5b2..02c2f8794 100644 --- a/src/guild.h +++ b/src/guild.h @@ -53,7 +53,9 @@ class GuildMember final : public Avatar protected: friend class Guild; - GuildMember(Guild *const guild, const int id, const int accountId, + GuildMember(Guild *const guild, + const BeingId accountId, + const int charId, const std::string &name); GuildMember(Guild *const guild, const std::string &name); @@ -78,7 +80,8 @@ class Guild final : public AvatarListModel /** * Adds member to the list. */ - GuildMember *addMember(const int accountId, const int charId, + GuildMember *addMember(const BeingId accountId, + const int charId, const std::string &name); /** @@ -91,14 +94,15 @@ class Guild final : public AvatarListModel * * @return the member with the given ID, or NULL if they don't exist. */ - GuildMember *getMember(const int id) const; + GuildMember *getMember(const BeingId id) const; /** * Find a member by account ID and char ID. * * @return the member with the given ID, or NULL if they don't exist. */ - GuildMember *getMember(const int accountId, const int charId) + GuildMember *getMember(const BeingId accountId, + const int charId) const A_WARN_UNUSED; /** @@ -130,7 +134,7 @@ class Guild final : public AvatarListModel /** * Removes a member from the guild. */ - void removeMember(const int id); + void removeMember(const BeingId id); /** * Removes a member from the guild. @@ -162,7 +166,7 @@ class Guild final : public AvatarListModel bool isMember(const GuildMember *const member) const A_WARN_UNUSED; - bool isMember(const int id) const A_WARN_UNUSED; + bool isMember(const BeingId id) const A_WARN_UNUSED; bool isMember(const std::string &name) const A_WARN_UNUSED; |