GDBMICommandResult.st
changeset 3 29ea333a1811
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBMICommandResult.st	Sat May 31 00:42:30 2014 +0100
@@ -0,0 +1,35 @@
+"{ Package: 'jv:libgdbs' }"
+
+Object subclass:#GDBMICommandResult
+	instanceVariableNames:'status value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'GDB-Core-MI'
+!
+
+
+!GDBMICommandResult methodsFor:'accessing'!
+
+status
+    ^ status
+!
+
+status:something
+    status := something.
+!
+
+value
+    ^ value
+!
+
+value:something
+    value := something.
+! !
+
+!GDBMICommandResult class methodsFor:'documentation'!
+
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
+! !
+