ClassBuildWarning.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 17 Sep 2015 08:30:10 +0100
branchjv
changeset 18756 dd41c8e43373
parent 16426 f8a36e7fd6b1
permissions -rw-r--r--
FFI: Simplified handling of custom ExternalAddress subclasses Merged branches for FFI return type #pointer and #handle. Send #initilize from C code and return from there rather than magically change local variable and then hadling this in Smalltalk code (this was bit tricky and hard to understand)

"{ Package: 'stx:libbasic' }"

Warning subclass:#ClassBuildWarning
	instanceVariableNames:'className'
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Support'
!


!ClassBuildWarning methodsFor:'accessing'!

className:aSymbol
    className := aSymbol.
! !

!ClassBuildWarning class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuildWarning.st,v 1.1 2014-05-13 22:11:40 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuildWarning.st,v 1.1 2014-05-13 22:11:40 cg Exp $'
! !