* Now use config file value
[circ.git] / Circ.Backend.Cil / CilBackend.cs
blobd01dd84d199c3e5307aa98d92d6ae8151be7f7aa
1 #region License
2 /* Circ.Cil : Circ's Irc Library, main backend for Circ
3 * Copyright (C) 2007 LAVAL Jérémie
5 * This file is licensed under the terms of the LGPL.
7 * For the complete licence see the file COPYING.
8 */
9 #endregion
10 using System;
11 using Circ.Backend;
13 namespace Circ.Cil
16 [Mono.Addins.Extension("/Circ/Backends", Id="Cil")]
17 public class CilBackend: IBackend
19 public ConnectionFactory GetConnectionFactory()
21 return new ConnectionFactory<CilIrcConnection>();
24 public string Name {
25 get {
26 return "Cil";