Skip navigation.
 
mlProblem with object communication
FROM : Ferdinand Svehla
DATE : Sat Nov 30 18:42:47 2002

Hi everyone!

I have a very delicate problem involviing several objects that should
communicate together only with my "MainController" object - my objects
are as follows

MainWindowController
   -> Outlet to MainController

PrefWindowController
   -> Outlet to MainController

StatusMenuController
   -> Outlet to MainController

MainController
   -> Outlet to MainWindowController
   -> Outlet to PrefWindowController
   -> Outlet to StatusMenuController

Because i does not want those "object does not respond to " compiler
warnings i've typed them statically (MainController *MyMainController
etc) so that the compiler knows which object is capable of using which
methods

The problem is that i get compiler errors (parse error before) - i
think it is because i include in MainController.h in
MainWindowController.h and MainWindowController.h in MainController.h
(so that the compiler knows which object is capable of doing what)

I dont know how i could get rid of those errors except for dynamically
type them which would give me those " does not respond to" warnings :(

I would appreciate any help!

    Ferdinand Svehla
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

Related mailsAuthorDate
mlProblem with object communication Ferdinand Svehla Nov 30, 18:42
mlRe: Problem with object communication Fritz Anderson Nov 30, 19:56
mlRe: Problem with object communication Ferdinand Svehla Nov 30, 20:09