--- trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/GenericMemoryProvider.cs 2012/06/03 12:36:47 231 +++ trunk/Win32/Sojaner.MemoryScanner/MemoryProviers/GenericMemoryProvider.cs 2012/06/03 16:32:58 251 @@ -14,4 +14,17 @@ namespace Sojaner.MemoryScanner.MemoryPr public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config,process) { } public GenericMemoryProvider(IAcceptsProcessAndConfig config) : base(config) { } } + + #region MemoryScanner-r204 + namespace r204 + { + public class GenericMemoryProvider : BaseMemoryProvider + { + public GenericMemoryProvider() : base() { } + public GenericMemoryProvider(IConfigPlugin config) : base(config) { } + public GenericMemoryProvider(IConfigPlugin config, Process process) : base(config, process) { } + public GenericMemoryProvider(IAcceptsProcessAndConfig config) : base(config) { } + } + } + #endregion } |