StandardSystemController.st
changeset 0 3f9277473954
child 5 4d55b551dc57
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/StandardSystemController.st	Fri Jul 16 11:42:12 1993 +0200
@@ -0,0 +1,36 @@
+"
+ COPYRIGHT (c) 1993 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.
+"
+
+Controller subclass:#StandardSystemController
+         instanceVariableNames:''
+         classVariableNames:''
+         poolDictionaries:''
+         category:'ST-80 compatibility'!
+
+StandardSystemController comment:'
+
+COPYRIGHT (c) 1993 by Claus Gittinger
+              All Rights Reserved
+
+COntroller for StandardSystemViews i.e. top views. There is nothing done here
+since all action is done in window manager. This class exists for ST-80 com-
+patibility mainly.
+
+%W% %E%
+written spring 93 by claus
+'!
+
+!StandardSystemController methodsFor:'startup'!
+
+open
+    view realize
+! !