From 63f50209d971be5e5b5778e12ead2f5f2642e87a Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Sun, 6 Jun 2010 08:47:24 +0000 Subject: [PATCH] Follow-up to previous commit --- Common/Config.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Common/Config.cs diff --git a/Common/Config.cs b/Common/Config.cs new file mode 100644 index 0000000..0ef6436 --- /dev/null +++ b/Common/Config.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FLocal.Common { + + public class Config : FLocal.Core.Config { + + protected Config() : base() { + } + + public static void Init() { + doInit(() => new Config()); + } + + } + +}