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:
parent
fbbb8e82c0
commit
fb06386753
1 changed files with 22 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue