GDBNotificationEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 07 Sep 2014 14:42:02 +0100
changeset 35 c17ecf90e446
parent 6 d935bc59f6f4
child 45 deb908479a37
permissions -rw-r--r--
Initial support for thread groups, threads and breakpoints.

"{ Package: 'jv:libgdbs' }"

GDBAsyncEvent subclass:#GDBNotificationEvent
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBNotificationEvent class methodsFor:'accessing - GDB value descriptors'!

gdbValueDescriptor
    ^ (super gdbValueDescriptor)
        "/ define: #... as: ...
        yourself

    "Created: / 06-09-2014 / 02:07:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!GDBNotificationEvent methodsFor:'testing'!

isNotificationEvent
    ^ true

    "Created: / 01-06-2014 / 23:38:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !