ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/Config/GenericConfig.cs
Revision: 99
Committed: Wed May 9 23:23:38 2012 UTC (11 years, 7 months ago) by william
File size: 1158 byte(s)
Log Message:
+ add logging options:
* VERBOSE_DEBUG and VERBOSE_ERROR : for debug and error messages that are very 'chatty'

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using RomCheater.PluginFramework.Core;
6 using System.Diagnostics;
7 using System.Security.Principal;
8 using RomCheater.Logging;
9
10 namespace RomCheater.CorePlugins.Config
11 {
12 public sealed class GenericConfig : ConfigPlugin
13 {
14 public GenericConfig() : base() { }
15 public GenericConfig(bool doinit) : base(doinit) { }
16
17 protected override bool IsNotValidProcess(ProcContainer p)
18 {
19 logger.VerboseDebug.WriteLine(" Allowing process {0} to be added", p.Name);
20 return false;
21 }
22 #region IPluginBase Members
23 public override Guid ID
24 {
25 get
26 {
27 return new GuidGenerator(typeof(GenericConfig).FullName).Guid;
28 }
29 }
30 public override string Name
31 {
32 get { return "Generic Configuration Plugin"; }
33 }
34 public override string Description
35 {
36 get { return "This plugin provides a generic configuration"; }
37 }
38 #endregion
39 }
40 }