Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/factories/linux/StandardLinuxCommandFactory.java')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/factories/linux/StandardLinuxCommandFactory.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/factories/linux/StandardLinuxCommandFactory.java b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/factories/linux/StandardLinuxCommandFactory.java
new file mode 100644
index 00000000000..099e7b0bd52
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/factories/linux/StandardLinuxCommandFactory.java
@@ -0,0 +1,41 @@
+/**********************************************************************
+ * Copyright (c) 2004 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+***********************************************************************/
+package org.eclipse.cdt.debug.mi.core.command.factories.linux;
+
+import org.eclipse.cdt.debug.mi.core.command.CLIInfoSharedLibrary;
+import org.eclipse.cdt.debug.mi.core.command.factories.StandardCommandFactory;
+
+/**
+ * Command factory for the standard gdb/mi protocol for Linux.
+ */
+public class StandardLinuxCommandFactory extends StandardCommandFactory {
+
+ /**
+ * Constructor for StandardLinuxCommandFactory.
+ */
+ public StandardLinuxCommandFactory() {
+ super();
+ }
+
+ /**
+ * Constructor for StandardLinuxCommandFactory.
+ */
+ public StandardLinuxCommandFactory( String miVersion ) {
+ super( miVersion );
+ }
+
+ /* (non-Javadoc)
+ * @see org.eclipse.cdt.debug.mi.core.command.CommandFactory#createCLIInfoSharedLibrary()
+ */
+ public CLIInfoSharedLibrary createCLIInfoSharedLibrary() {
+ return new LinuxCLIInfoSharedLibrary();
+ }
+}

Back to the top