pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/EventSet.cs

35 lines
562 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
using System;
namespace Mono.Debugger.Soft
{
public class EventSet {
protected VirtualMachine vm;
SuspendPolicy suspend_policy;
Event[] events;
internal EventSet (VirtualMachine vm, SuspendPolicy suspend_policy, Event[] events) {
this.vm = vm;
this.suspend_policy = suspend_policy;
this.events = events;
}
public SuspendPolicy SuspendPolicy {
get {
return suspend_policy;
}
}
public Event[] Events {
get {
return events;
}
}
public Event this [int index] {
get {
return Events [index];
}
}
}
}