GDBThreadGroup.st
changeset 91 472a4841a8b6
parent 90 6046abc9ddf4
child 95 f417138e9c48
equal deleted inserted replaced
90:6046abc9ddf4 91:472a4841a8b6
     1 "{ Encoding: utf8 }"
     1 "{ Encoding: utf8 }"
     2 
     2 
       
     3 "
       
     4 jv:libgdbs - GNU Debugger Interface Library
       
     5 Copyright (C) 2015-now Jan Vrany
       
     6 
       
     7 This library is free software; you can redistribute it and/or
       
     8 modify it under the terms of the GNU Lesser General Public
       
     9 License as published by the Free Software Foundation; either
       
    10 version 2.1 of the License. 
       
    11 
       
    12 This library is distributed in the hope that it will be useful,
       
    13 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    15 Lesser General Public License for more details.
       
    16 
       
    17 You should have received a copy of the GNU Lesser General Public
       
    18 License along with this library; if not, write to the Free Software
       
    19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    20 "
     3 "{ Package: 'jv:libgdbs' }"
    21 "{ Package: 'jv:libgdbs' }"
     4 
    22 
     5 "{ NameSpace: Smalltalk }"
    23 "{ NameSpace: Smalltalk }"
     6 
    24 
     7 GDBDebuggerObject subclass:#GDBThreadGroup
    25 GDBDebuggerObject subclass:#GDBThreadGroup
     9 	classVariableNames:''
    27 	classVariableNames:''
    10 	poolDictionaries:'GDBCommandStatus'
    28 	poolDictionaries:'GDBCommandStatus'
    11 	category:'GDB-Core'
    29 	category:'GDB-Core'
    12 !
    30 !
    13 
    31 
       
    32 !GDBThreadGroup class methodsFor:'documentation'!
       
    33 
       
    34 copyright
       
    35 "
       
    36 jv:libgdbs - GNU Debugger Interface Library
       
    37 Copyright (C) 2015-now Jan Vrany
       
    38 
       
    39 This library is free software; you can redistribute it and/or
       
    40 modify it under the terms of the GNU Lesser General Public
       
    41 License as published by the Free Software Foundation; either
       
    42 version 2.1 of the License. 
       
    43 
       
    44 This library is distributed in the hope that it will be useful,
       
    45 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    46 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    47 Lesser General Public License for more details.
       
    48 
       
    49 You should have received a copy of the GNU Lesser General Public
       
    50 License along with this library; if not, write to the Free Software
       
    51 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    52 "
       
    53 ! !
    14 
    54 
    15 !GDBThreadGroup class methodsFor:'instance creation'!
    55 !GDBThreadGroup class methodsFor:'instance creation'!
    16 
    56 
    17 new
    57 new
    18     "return an initialized instance"
    58     "return an initialized instance"