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

Implementation fo createMIInfoSignals().

This commit is contained in:
Alain Magloire 2003-01-31 19:55:07 +00:00
parent 05e5d1a3c3
commit 92f138c807

View file

@ -269,6 +269,14 @@ public class CommandFactory {
return new MIWhatis(name); return new MIWhatis(name);
} }
public MIInfoSignals createMIInfoSignals() {
return new MIInfoSignals();
}
public MIInfoSignals createMIInfoSignals(String name) {
return new MIInfoSignals(name);
}
public MIPType createMIPType(String name) { public MIPType createMIPType(String name) {
return new MIPType(name); return new MIPType(name);
} }