1 /*
2  * $Id$
3  * $URL$
4  * $Rev$
5  * $Author$
6  * $Date$
7  *
8  * SmartIrc4net - the IRC library for .NET/C# <http://smartirc4net.sf.net>
9  *
10  * Copyright (c) 2003-2005 Mirco Bauer <meebey@meebey.net> <http://www.meebey.net>
11  *
12  * Full LGPL License: <http://www.gnu.org/licenses/lgpl.txt>
13  *
14  * This library is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU Lesser General Public
16  * License as published by the Free Software Foundation; either
17  * version 2.1 of the License, or (at your option) any later version.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27  */
28 
29 namespace Meebey.SmartIrc4net
30 {
31     /// <summary>
32     ///
33     /// </summary>
34     /// <threadsafety static="true" instance="true" />
35     public class NonRfcChannelUser : ChannelUser
36     {
37         public bool IsOwner { get; set; }
38         public bool IsChannelAdmin { get; set; }
39         public bool IsHalfop { get; set; }
40 
41         /// <summary>
42         ///
43         /// </summary>
44         /// <param name="channel"> </param>
45         /// <param name="ircuser"> </param>
NonRfcChannelUser(string channel, IrcUser ircuser)46         internal NonRfcChannelUser(string channel, IrcUser ircuser) : base(channel, ircuser)
47         {
48         }
49 
50 #if LOG4NET
~NonRfcChannelUser()51         ~NonRfcChannelUser()
52         {
53             Logger.ChannelSyncing.Debug("NonRfcChannelUser ("+Channel+":"+IrcUser.Nick+") destroyed");
54         }
55 #endif
56     }
57 }
58