GDBCommandEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 04 Jun 2014 09:37:08 +0100
changeset 9 5cc8797f6523
parent 7 7a51f98e7162
child 12 568a2971c977
permissions -rw-r--r--
Make simple example with -gdb-exit command working gdb := GDB new. gdb send: (GDBCLICommand new value:'-gdb-exit'). gdb release.

"{ Package: 'jv:libgdbs' }"

GDBEvent subclass:#GDBCommandEvent
	instanceVariableNames:'command'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBCommandEvent methodsFor:'accessing'!

command
    ^ command
!

command:aGDBCommand
    command := aGDBCommand.
    token := aGDBCommand token.

    "Modified: / 04-06-2014 / 09:07:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !