Example #1
0
 public void Process(NativeCounter counter)
 {
     if (visitor.Filter(counter))
     {
         visitor.Process(new Counter(counter.Name, counter.GetValue(array !)));
     }
 }
Example #2
0
 internal protected virtual bool Filter(NativeCounter c)
 {
     return(true);
 }