00001 using System;
00002 using System.Collections.Generic;
00003 using System.IO;
00004 using System.Linq;
00005 using System.Text;
00006 using System.Windows.Forms;
00007 using System.Xml;
00008
00009 using Siki;
00010 using Siki.Configure;
00011
00012 namespace NicoLiveAlert {
00013
00017 public class AlertConfigure : GlobalConfigure{
00018
00019 public static readonly char[] versionchars = new char[]{'1','2','3','4','5','6','7','8','9','0', '.'};
00020
00024 public AlertConfigure() : base(){
00025
00026 }
00027
00033 public AlertConfigure(string conffile)
00034 : base(Application.UserAppDataPath.TrimEnd(versionchars), conffile, "alert") {
00035
00036 }
00037 }
00038 }