forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIPluginHost.cs
More file actions
82 lines (67 loc) · 1.5 KB
/
Copy pathIPluginHost.cs
File metadata and controls
82 lines (67 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using System;
using System.Diagnostics.Contracts;
using System.Resources;
using ReClassNET.Forms;
using ReClassNET.Logger;
using ReClassNET.Memory;
namespace ReClassNET.Plugins
{
[ContractClass(typeof(PluginHostContract))]
public interface IPluginHost
{
/// <summary>Gets the main window of ReClass.NET.</summary>
MainForm MainWindow { get; }
/// <summary>Gets the resources of ReClass.NET.</summary>
ResourceManager Resources { get; }
/// <summary>Gets the process ReClass.NET is attached to.</summary>
RemoteProcess Process { get; }
/// <summary>Gets the logger ReClass.NET is using.</summary>
ILogger Logger { get; }
/// <summary>Gets the settings ReClass.NET is using.</summary>
Settings Settings { get; }
}
[ContractClassFor(typeof(IPluginHost))]
internal abstract class PluginHostContract : IPluginHost
{
public ILogger Logger
{
get
{
Contract.Ensures(Logger != null);
throw new NotImplementedException();
}
}
public MainForm MainWindow
{
get
{
Contract.Ensures(MainWindow != null);
throw new NotImplementedException();
}
}
public RemoteProcess Process
{
get
{
Contract.Ensures(Process != null);
throw new NotImplementedException();
}
}
public ResourceManager Resources
{
get
{
Contract.Ensures(Resources != null);
throw new NotImplementedException();
}
}
public Settings Settings
{
get
{
Contract.Ensures(Settings != null);
throw new NotImplementedException();
}
}
}
}