mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
New method crateMISharedLibrary
This commit is contained in:
parent
1a00ad8f8f
commit
99f7ea62b6
1 changed files with 16 additions and 0 deletions
|
@ -257,6 +257,22 @@ public class CommandFactory {
|
|||
return new MIInfoSharedLibrary();
|
||||
}
|
||||
|
||||
public MISharedLibrary createMISharedLibrary() {
|
||||
return new MISharedLibrary();
|
||||
}
|
||||
|
||||
public MISharedLibrary createMISharedLibrary(String name) {
|
||||
return new MISharedLibrary(name);
|
||||
}
|
||||
|
||||
public MIWhatis createMIWhatis(String name) {
|
||||
return new MIWhatis(name);
|
||||
}
|
||||
|
||||
public MIPType createMIPType(String name) {
|
||||
return new MIPType(name);
|
||||
}
|
||||
|
||||
public MIVarCreate createMIVarCreate(String expression) {
|
||||
return new MIVarCreate(expression);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue