Cairo__CObject.st
changeset 40 28dfc583beb5
parent 36 9b680e54aa94
child 43 1006839761af
--- a/Cairo__CObject.st	Tue Feb 16 07:46:52 2016 +0000
+++ b/Cairo__CObject.st	Wed Feb 17 06:43:31 2016 +0000
@@ -4,12 +4,24 @@
 
 ExternalAddress subclass:#CObject
 	instanceVariableNames:''
-	classVariableNames:''
+	classVariableNames:'Lobby'
 	poolDictionaries:''
 	category:'Cairo-Objects'
 !
 
 
+!CObject class methodsFor:'initialization'!
+
+initialize
+    "Invoked at system start or when the class is dynamically loaded."
+
+    "/ please change as required (and remove this comment)
+
+    Lobby := Registry new
+
+    "Modified: / 09-01-2015 / 11:22:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !CObject class methodsFor:'instance creation'!
 
 fromExternalAddress: anExternalAddress
@@ -109,3 +121,5 @@
     ^ '$Changeset: <not expanded> $'
 ! !
 
+
+CObject initialize!