copied mono-api-diff.cs from mono-2-2 branch so new patch can be applied and history...
[mono.git] / mcs / class / Mono.Debugger.Soft / Mono.Debugger.Soft / VMDisconnectEvent.cs
1 using System;
2
3 namespace Mono.Debugger.Soft
4 {
5         public class VMDisconnectEvent : Event
6         {
7                 public VMDisconnectEvent (VirtualMachine vm, int req_id) : base (EventType.VMDisconnect, vm, req_id, -1) {
8                 }
9     }
10 }