Skip to main content
summaryrefslogtreecommitdiffstats
blob: 36862fdfc3bf4f4288ac0102bad018562bf928a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 *
 */
package org.eclipse.cdt.debug.mi.core.event;



/**
 * Gdb Session terminated.
 */
public class MIGDBExitEvent extends MIDestroyedEvent {

	public MIGDBExitEvent(int token) {
		super(token);
	}
}

Back to the top