mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
New constructor.
This commit is contained in:
parent
99f7ea62b6
commit
9a9ecfc1e4
1 changed files with 10 additions and 5 deletions
|
@ -6,15 +6,20 @@
|
||||||
|
|
||||||
package org.eclipse.cdt.debug.mi.core.command;
|
package org.eclipse.cdt.debug.mi.core.command;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* sharedlibrary regex
|
* sharedlibrary filename
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class MISharedLibrary extends CLICommand
|
public class MISharedLibrary extends CLICommand {
|
||||||
{
|
|
||||||
public MISharedLibrary(String lib) {
|
public MISharedLibrary() {
|
||||||
super("sharedlibrary " + lib);
|
super("sharedlibrary");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public MISharedLibrary(String name) {
|
||||||
|
super("sharedlibrary " + name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue