GDBCommand.st
changeset 7 7a51f98e7162
parent 6 d935bc59f6f4
child 11 474fbb650afe
--- a/GDBCommand.st	Mon Jun 02 22:25:25 2014 +0100
+++ b/GDBCommand.st	Mon Jun 02 23:56:27 2014 +0100
@@ -1,9 +1,27 @@
 "{ Package: 'jv:libgdbs' }"
 
 Object subclass:#GDBCommand
-	instanceVariableNames:''
+	instanceVariableNames:'token'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'GDB-Core-Commands'
 !
 
+!GDBCommand methodsFor:'accessing'!
+
+token
+    ^ token
+!
+
+token:anInteger
+    token := anInteger.
+! !
+
+!GDBCommand methodsFor:'converting'!
+
+asString
+    ^ self subclassResponsibility
+
+    "Created: / 02-06-2014 / 23:34:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+