1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel; |
4 |
using System.Data; |
5 |
using System.Drawing; |
6 |
using System.Linq; |
7 |
using System.Text; |
8 |
using System.Windows.Forms; |
9 |
using WeifenLuo.WinFormsUI.Docking; |
10 |
using RomCheater.Logging; |
11 |
using Enterprise.Logging; |
12 |
|
13 |
namespace RomCheater.Docking |
14 |
{ |
15 |
public partial class FloatingLogWindow : DockContent |
16 |
{ |
17 |
public FloatingLogWindow() |
18 |
{ |
19 |
InitializeComponent(); |
20 |
} |
21 |
|
22 |
public LogWriter Logwriter |
23 |
{ |
24 |
get { return logwriter; } |
25 |
} |
26 |
} |
27 |
} |