ApplicationModel.st
author claus
Thu, 23 Mar 1995 17:51:31 +0100
changeset 50 53bc56e07e8f
child 52 6dc870beba69
permissions -rw-r--r--
Initial revision

"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

Model subclass:#ApplicationModel
	 instanceVariableNames:'builder'
	 classVariableNames:''
	 poolDictionaries:''
	 category:'ST80-Compatibility'
!

!ApplicationModel class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

version
"
$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.1 1995-03-23 16:51:31 claus Exp $
"
!

documentation
"
    Since many ST-80 classes are subclasses of ApplicationModel, this class
    is provided here to allow easier porting of ST-80 code.
    It does not (currently) provide any functionality; therefore, manual
    changes have to be made to get those applications to run under ST/X.
    (but at least, this enables you to fileIn that code)

    Instance variables:
	builder      ?          dont know what that is used for yet,
				some subclasses (see manchester goodies)
				depend on thise being there.
"
! !

!ApplicationModel class methodsFor:'startup'!

open
    self subclassResponsibility
! !