Re: Using the #import directive

2010-04-05 Thread Jeremy Pereira
On 2 Apr 2010, at 00:59, Steve Cronin wrote: > > On Apr 1, 2010, at 5:58 PM, Jens Alfke wrote: > >> >> On Apr 1, 2010, at 3:51 PM, Steve Cronin wrote: >> >>> I have an import statement like the last example but I can't find any "bar" >>> directory >>> I'm unable to determine the particular i

Re: Using the #import directive

2010-04-01 Thread Steve Cronin
On Apr 1, 2010, at 5:58 PM, Jens Alfke wrote: > > On Apr 1, 2010, at 3:51 PM, Steve Cronin wrote: > >> I have an import statement like the last example but I can't find any "bar" >> directory >> I'm unable to determine the particular instance of "foo.h" that is being >> used here… > > Select

Re: Using the #import directive

2010-04-01 Thread Greg Parker
On Apr 1, 2010, at 3:51 PM, Steve Cronin wrote: > I'm puzzled by a configuration > > Here are my assumptions: > #import //generally a framework reference - is > relative to /System/Library > #import "foo.h" //source file found in $(SRCROOT) > #import "bar/foo.h"

Re: Using the #import directive

2010-04-01 Thread Jens Alfke
On Apr 1, 2010, at 3:51 PM, Steve Cronin wrote: I have an import statement like the last example but I can't find any "bar" directory I'm unable to determine the particular instance of "foo.h" that is being used here… Select "bar/foo.h" and press Cmd-Shift-D (File > Open Quickly). That s

Using the #import directive

2010-04-01 Thread Steve Cronin
Folks; I'm puzzled by a configuration Here are my assumptions: #import //generally a framework reference - is relative to /System/Library #import "foo.h" //source file found in $(SRCROOT) #import "bar/foo.h" // source file found in a directory relative to