blob: 10d07543f782b63984753c37fee15aa176f34806 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi;
/**
*
* Represents an information provided by the session when the program
* exited.
*
* @since Jul 10, 2002
*/
public interface ICDIExitInfo extends ICDISessionObject {
/**
* Returns an exit code.
*
* @return an exit code
*/
int getCode();
}