]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/membership.h
Add testsuite tests for UID generation
[user/henk/code/inspircd.git] / include / membership.h
index 458c7efc4b7575872f9be21de1881bd5faafa1a0..281d04f70ba1818366416b77d2aee32ad1e99d3d 100644 (file)
@@ -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 <danieldg@inspircd.org>
  *
- * 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 <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __MEMBERSHIP_H__
-#define __MEMBERSHIP_H__
 
-class User;
-class Channel;
+#ifndef MEMBERSHIP_H
+#define MEMBERSHIP_H
 
-struct CoreExport 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,4 @@ struct CoreExport Membership : public Extensible
        unsigned int getRank();
 };
 
-CoreExport typedef std::map<User*, Membership*> UserMembList;
-CoreExport typedef UserMembList::iterator UserMembIter;
-CoreExport typedef UserMembList::const_iterator UserMembCIter;
-
-CoreExport typedef std::set<User*> CUList;
-
 #endif