GDBDebuggerObject.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 01 Oct 2014 02:04:11 +0100
changeset 51 2fa20404923c
parent 39 2b9d2f75906f
child 78 c24e7d8bc881
permissions -rw-r--r--
Introduced GDBThreadGroupType. Currently, there's only type 'process' as it is the only type supported by GDB.

"{ Package: 'jv:libgdbs' }"

GDBObject subclass:#GDBDebuggerObject
	instanceVariableNames:'debugger'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core'
!

!GDBDebuggerObject class methodsFor:'testing'!

isAbstract
    ^ self == GDBDebuggerObject
! !

!GDBDebuggerObject methodsFor:'accessing'!

debugger
    ^ debugger
! !

!GDBDebuggerObject methodsFor:'initialization'!

setDebugger: aGDBDebugger
    self assert: debugger isNil.
    debugger := aGDBDebugger

    "Created: / 07-09-2014 / 21:17:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !