home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / lang / cplus / 12881 < prev    next >
Encoding:
Internet Message Format  |  1992-08-25  |  2.5 KB

  1. Path: sparky!uunet!wupost!cs.utexas.edu!ut-emx!jamshid
  2. From: jamshid@ut-emx.uucp (Jamshid Afshar)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: disp.h for BC/C++ Yes/No? Where...Al Stevens...*.hpp?
  5. Message-ID: <78400@ut-emx.uucp>
  6. Date: 25 Aug 92 22:14:29 GMT
  7. References: <Bt9J3M.CHL@news.udel.edu>
  8. Reply-To: jamshid@emx.utexas.edu
  9. Followup-To: comp.os.msdos.programmer
  10. Organization: The University of Texas at Austin; Austin, Texas
  11. Lines: 48
  12.  
  13. Followups have been redirected to comp.os.msdos.programmer.
  14.  
  15. In article <Bt9J3M.CHL@news.udel.edu> davidc@brahms.udel.edu (David Casper) writes:
  16. >Is there a "disp.h" for DOS|BC/C++ ???
  17.  
  18. No, I think it's a Zortech (now Symantec) header file.  It's probably
  19. their screen functions so you may be able to do what you want with
  20. Borland's <conio.h> functions.  If you have TC++/BC++ 3.0+ take a look
  21. at their <constrea.h> class constream.
  22.  
  23. >Is there a "stream.hpp" ???
  24.  
  25. It's Zortech's C++ streams header.  Instead use the standard
  26. <iostream.h> header.  Note, your code was probably compiled with the
  27. older version of C++ streams (Zortech didn't support "C++ 2.0 streams"
  28. until their 3.0) so you may need to do some code changes.  See
  29. Stroustrup's _C++ Prog.Lang. 2nd Ed_ or Lippman's _C++ Primer 2nd Ed_
  30. to learn about modern streams.
  31.  
  32. >What does "*.hpp" stand for ???
  33.  
  34. Some C++ programmers use this extension instead of ".h" for their
  35. header files.  See the c.l.c++ FAQ (ftp sun.soe.clarkson.edu,
  36. pub/C++/FAQ).  I just use ".h" since there's not much reason to use a
  37. different extension (you don't 'make' .h files) and I think most C++
  38. programmers do also.  ANSI C++ will probably use ".h" for any standard
  39. C++ headers they introduce (confirmation?).
  40.  
  41. >What is Dr. Dobbs ???
  42.  
  43. _Dr. Dobb's Journal_ published by M&T.  Very good, not too serious,
  44. general programming magazine leaning towards C (some C++) and PC
  45. programming.  I subscribe to it because I really like the
  46. personalities and policies of the editor and columnists.  You should
  47. be able to find it at any bookstore (B.Dalton) in the computer mag
  48. section.  All DDJ code is available in the DDJMAG directory at Simtel.
  49. See the comp.os.msdos.programmer FAQ if you don't know about Simtel.
  50.  
  51. >What/which publication(s) does Al Stevens write for ???
  52.  
  53. For at least DDJ.  He's writing the free D-Flat user-interface library
  54. (supports MS-DOS character mode now) and soon to be writing about the
  55. C++ version D-Flat++.  Haven't really looked at it, though.  Anyone
  56. know if he or others are planning on porting it to other GUIs?  That
  57. would be great.
  58.  
  59. Jamshid Afshar
  60. jamshid@emx.utexas.edu
  61.