1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New method set/getSharedLibraryManager.() and

setAutoLoadSymbols().
This commit is contained in:
Alain Magloire 2003-01-29 19:13:09 +00:00
parent fbbb8e82c0
commit fb06386753

View file

@ -40,4 +40,26 @@ public interface ICDISharedLibraryManager extends ICDIManager {
*/
void loadSymbols() throws CDIException;
/**
* Automatically load the symbols.
* @throws CDIException
*/
void setAutoLoadSymbols(boolean set) throws CDIException;
/**
* return the search paths for shared libraries.
*
* @return String[]
* @throws CDIException
*/
String[] getSharedLibraryPaths() throws CDIException;
/**
* Reset the shared libs paths to libpaths.
* @param libpaths
* @throws CDIException
*/
void setSharedLibraryPaths(String[] libpaths) throws CDIException;
}