Cosmos/source2/IL2PCU/Cosmos.IL2CPU.Profiler/ILOpProfiler.cs
kudzu_cp ba872eba56
2009-07-26 00:56:42 +00:00

14 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.Profiler {
public class ILOpProfiler : Cosmos.IL2CPU.ILOp {
public ILOpProfiler(ILOpCode aOpCode)
: base(aOpCode) {
}
public override void Execute(UInt32 aMethodUID) { }
}
}