Changeset 564
- Timestamp:
- 11/14/2008 10:33:06 AM (3 years ago)
- Location:
- branches/eraser6/Manager
- Files:
-
- 2 edited
-
Manager.cs (modified) (1 diff)
-
Plugins.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Manager/Manager.cs
r561 r564 42 42 ErasureMethodManager = new ErasureMethodManager(); 43 43 Host = new Plugin.DefaultHost(); 44 Host.Load(); 44 45 } 45 46 -
branches/eraser6/Manager/Plugins.cs
r558 r564 33 33 /// program. 34 34 /// </summary> 35 /// <remarks>Remember to call Load to load the plugins into memory, otherwise 36 /// they will never be loaded.</remarks> 35 37 public abstract class Host : IDisposable 36 38 { … … 50 52 get; 51 53 } 54 55 /// <summary> 56 /// Loads all plugins into memory. 57 /// </summary> 58 public abstract void Load(); 52 59 53 60 /// <summary> … … 94 101 /// </summary> 95 102 public DefaultHost() 103 { 104 } 105 106 public override void Load() 96 107 { 97 108 AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(AssemblyResolve);
Note: See TracChangeset
for help on using the changeset viewer.
