X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fmembership.h;h=436a9371c5c30ef60505d3be81026d9b4aec016a;hb=4c751dbbe8945e5efc230a59b0ed51c2ba10cf92;hp=dcaa5e1e1b571bb0af5a584cc3d68ab9911116c4;hpb=b4be0c94ab5fb7e5a7a799a195c78de072a5e315;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/membership.h b/include/membership.h index dcaa5e1e1..436a9371c 100644 --- a/include/membership.h +++ b/include/membership.h @@ -1,24 +1,28 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2009 Daniel De Graaf * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. * - * --------------------------------------------------- + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ -#ifndef __MEMBERSHIP_H__ -#define __MEMBERSHIP_H__ -class User; -class Channel; +#ifndef MEMBERSHIP_H +#define MEMBERSHIP_H -struct Membership : public Extensible +class CoreExport Membership : public Extensible { + public: User* const user; Channel* const chan; // mode list, sorted by prefix rank, higest first @@ -31,10 +35,29 @@ struct Membership : public Extensible unsigned int getRank(); }; -typedef std::map UserMembList; -typedef UserMembList::iterator UserMembIter; -typedef UserMembList::const_iterator UserMembCIter; +class CoreExport InviteBase +{ + protected: + InviteList invites; + + public: + void ClearInvites(); + + friend class Invitation; +}; + +class Invitation : public classbase +{ + Invitation(Channel* c, LocalUser* u, time_t timeout) : user(u), chan(c), expiry(timeout) {} -typedef std::set CUList; + public: + LocalUser* const user; + Channel* const chan; + time_t expiry; + + ~Invitation(); + static void Create(Channel* c, LocalUser* u, time_t timeout); + static Invitation* Find(Channel* c, LocalUser* u, bool check_expired = true); +}; #endif