GDBMI_target_file_delete.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBMI_target_file_delete.st	Thu Jun 12 01:21:45 2014 +0100
@@ -0,0 +1,46 @@
+"{ Package: 'jv:libgdbs' }"
+
+GDBMICommand subclass:#GDBMI_target_file_delete
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'GDB-Core-Commands-MI'
+!
+
+!GDBMI_target_file_delete class methodsFor:'documentation'!
+
+documentation
+"
+The `-target-file-delete' Command
+---------------------------------
+
+Synopsis
+........
+
+      -target-file-delete TARGETFILE
+
+   Delete TARGETFILE from the target system.
+
+{No value for `GDBN'} Command
+.............................
+
+The corresponding {No value for `GDBN'} command is `remote delete'.
+
+Example
+.......
+
+     (gdb)
+     -target-file-delete remotefile
+     ^done
+     (gdb)
+
+
+"
+! !
+
+!GDBMI_target_file_delete methodsFor:'accessing'!
+
+operation
+	^ 'target-file-delete'
+! !
+