home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / cplus / 11670 < prev    next >
Encoding:
Text File  |  1992-07-28  |  664 b   |  31 lines

  1. Path: sparky!uunet!usc!news
  2. From: junghyun@pollux.usc.edu (Jung-Hyun Han)
  3. Newsgroups: comp.lang.c++
  4. Subject: wow!! C++ interface
  5. Date: 28 Jul 1992 11:24:31 -0700
  6. Organization: University of Southern California, Los Angeles, CA
  7. Lines: 18
  8. Sender: junghyun@pollux.usc.edu (Jung-Hyun Han)
  9. Distribution: world
  10. Message-ID: <l7b46vINN1lo@pollux.usc.edu>
  11. NNTP-Posting-Host: pollux.usc.edu
  12.  
  13. thanx a lot for your kind replies
  14. especially those who gave exact answers!!
  15. the problem usually occurs when there are virtual methods
  16. which are not provided but just defined as in 
  17.  
  18. Class A{
  19. public:
  20.     virtual doit();
  21. };
  22.  
  23. but nowhere does 
  24. A::doit(){
  25. ...
  26. } appear.
  27.  
  28. sincerely, Jung
  29.  
  30.  
  31.