Xref: utzoo comp.lang.c++:8293 gnu.g++:932 Path: utzoo!attcan!uunet!mcsun!cernvax!chx400!ethz!ethz-inf!mneerach From: mneerach@inf.ethz.ch (Matthias Ulrich Neeracher) Newsgroups: comp.lang.c++,gnu.g++ Subject: Re: order of stuff Message-ID: <28330@ethz-inf.UUCP> Date: 2 Jul 90 14:26:53 GMT References: <2828@zipeecs.umich.edu> Followup-To: comp.lang.c++ Organization: Informatik ETH Zurich Lines: 27 In article <2828@zipeecs.umich.edu> bagchi@dip.eecs.umich.edu (Ranjan Bagchi) writes: > Is there anything special I have to do so that I can do the >following: > class foo { > bar bat; > }; > > class bar { > int glorp(foo); > }; > This should work : class foo; class bar { int glorp(foo); }; class foo { bar bat; }; I have not been feeding this to any compiler, though. Matthias