blob: 2caf7bd880562d3eba25360d8e361ec4dbeeeca8 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core;
import org.eclipse.cdt.debug.core.model.ICSignal;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.DebugException;
/**
* Enter type comment.
*
* @since: Jan 31, 2003
*/
public interface ICSignalManager extends IAdaptable
{
ICSignal[] getSignals() throws DebugException;
void dispose();
}