GDBCommandStatus.st
changeset 6 d935bc59f6f4
parent 4 62366cc0fd95
child 78 c24e7d8bc881
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBCommandStatus.st	Mon Jun 02 22:25:25 2014 +0100
@@ -0,0 +1,27 @@
+"{ Package: 'jv:libgdbs' }"
+
+SharedPool subclass:#GDBCommandStatus
+	instanceVariableNames:''
+	classVariableNames:'CommandStatusDone CommandStatusConnected CommandStatusError
+		CommandStatusExit'
+	poolDictionaries:''
+	category:'GDB-Core-Commands'
+!
+
+!GDBCommandStatus class methodsFor:'initialization'!
+
+initialize
+    "Invoked at system start or when the class is dynamically loaded."
+
+    "/ please change as required (and remove this comment)
+
+    CommandStatusDone := #done.
+    CommandStatusConnected := #commected.
+    CommandStatusError := #error.
+    CommandStatusExit := #exit.
+
+    "Modified: / 01-06-2014 / 23:21:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+
+GDBCommandStatus initialize!