ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingLogWindow.cs
Revision: 146
Committed: Sun May 27 22:24:30 2012 UTC (11 years ago) by william
File size: 562 byte(s)
Log Message:

File Contents

# Content
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
12 namespace RomCheater.Docking
13 {
14 public partial class FloatingLogWindow : DockContent
15 {
16 public FloatingLogWindow()
17 {
18 InitializeComponent();
19 }
20
21 public LogWriter Logwriter
22 {
23 get { return logwriter; }
24 }
25 }
26 }