GDBInternalEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 03 Jun 2014 01:05:03 +0100
changeset 8 7f4882e2562a
child 78 c24e7d8bc881
permissions -rw-r--r--
More work on basic example. GDB exiting not yet working.

"{ Package: 'jv:libgdbs' }"

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


!GDBInternalEvent class methodsFor:'queries'!

isAbstract
    "Return if this class is an abstract class.
     True is returned here for myself only; false for subclasses.
     Abstract subclasses must redefine again."

    ^ self == GDBInternalEvent.
! !

!GDBInternalEvent class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !