GDBSessionRecord.st
changeset 91 472a4841a8b6
parent 78 c24e7d8bc881
equal deleted inserted replaced
90:6046abc9ddf4 91:472a4841a8b6
       
     1 "
       
     2 jv:libgdbs - GNU Debugger Interface Library
       
     3 Copyright (C) 2015-now Jan Vrany
       
     4 
       
     5 This library is free software; you can redistribute it and/or
       
     6 modify it under the terms of the GNU Lesser General Public
       
     7 License as published by the Free Software Foundation; either
       
     8 version 2.1 of the License. 
       
     9 
       
    10 This library is distributed in the hope that it will be useful,
       
    11 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13 Lesser General Public License for more details.
       
    14 
       
    15 You should have received a copy of the GNU Lesser General Public
       
    16 License along with this library; if not, write to the Free Software
       
    17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    18 "
     1 "{ Package: 'jv:libgdbs' }"
    19 "{ Package: 'jv:libgdbs' }"
     2 
    20 
     3 "{ NameSpace: Smalltalk }"
    21 "{ NameSpace: Smalltalk }"
     4 
    22 
     5 OrderedCollection subclass:#GDBSessionRecord
    23 OrderedCollection subclass:#GDBSessionRecord
    20 	instanceVariableNames:'string'
    38 	instanceVariableNames:'string'
    21 	classVariableNames:''
    39 	classVariableNames:''
    22 	poolDictionaries:''
    40 	poolDictionaries:''
    23 	privateIn:GDBSessionRecord
    41 	privateIn:GDBSessionRecord
    24 !
    42 !
       
    43 
       
    44 !GDBSessionRecord class methodsFor:'documentation'!
       
    45 
       
    46 copyright
       
    47 "
       
    48 jv:libgdbs - GNU Debugger Interface Library
       
    49 Copyright (C) 2015-now Jan Vrany
       
    50 
       
    51 This library is free software; you can redistribute it and/or
       
    52 modify it under the terms of the GNU Lesser General Public
       
    53 License as published by the Free Software Foundation; either
       
    54 version 2.1 of the License. 
       
    55 
       
    56 This library is distributed in the hope that it will be useful,
       
    57 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    58 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    59 Lesser General Public License for more details.
       
    60 
       
    61 You should have received a copy of the GNU Lesser General Public
       
    62 License along with this library; if not, write to the Free Software
       
    63 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    64 "
       
    65 ! !
    25 
    66 
    26 !GDBSessionRecord class methodsFor:'instance creation'!
    67 !GDBSessionRecord class methodsFor:'instance creation'!
    27 
    68 
    28 new
    69 new
    29     ^ super new initialize.
    70     ^ super new initialize.