ApplicationController.st
author claus
Sun, 26 Mar 1995 22:11:31 +0200
changeset 56 405a86416674
parent 52 6dc870beba69
child 63 23617db5f7db
permissions -rw-r--r--
*** empty log message ***

"
 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.
"

ControllerWithMenu subclass:#ApplicationController
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Framework'
!

!ApplicationController 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/ApplicationController.st,v 1.3 1995-03-26 20:11:31 claus Exp $
"
!

documentation
"
    Since many ST-80 classes are subclasses of ApplicationController, 
    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:
"
! !