home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c++
- Path: sparky!uunet!pipex!warwick!nott-cs!lut.ac.uk!cojm2
- From: J.March@lut.ac.uk
- Subject: Novice question
- Message-ID: <1992Sep5.000938.9187@lut.ac.uk>
- Reply-To: J.March@lut.ac.uk (Jon March)
- Organization: Loughborough University, UK.
- References: <H7ZyoB6w164w@cellar.org> <1992Sep3.164747.25939@news.miami.edu> <1992Sep4.194039.23622@advtech.uswest.com>
- Date: Sat, 5 Sep 92 00:09:38 GMT
- Lines: 25
-
- Why dosn't this work?...
-
- class thing
- {
- ...
- void f();
- void g();
- }
-
- void main()
- {
- thing obj;
-
- obj.f().g();
- }
-
-
-
- I am trying to get this sort of effect:
-
- obj <- g( f( obj ) )
-
-
- Jon March
-
-