Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b9d6a18decd79be4e6a45b7c458777989b0a5ad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * Created on Jul 5, 2004
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package org.eclipse.cdt.utils;

import org.eclipse.core.runtime.IPath;

/**
 * @author DInglis
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public interface IGnuToolFactory {

	Addr2line getAddr2line(IPath path);

	CPPFilt getCPPFilt();

	Objdump getObjdump(IPath path);

	NM getNM(IPath path);
}

Back to the top