Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2caf7bd880562d3eba25360d8e361ec4dbeeeca8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *(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();
}

Back to the top