home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / dreamscape / examples / Dreamscape / Examples / CApp / ReadMe next >
Encoding:
Text File  |  1996-09-15  |  913 b   |  17 lines

  1.  
  2. This program demonstrates the use of Dreamscape from C. Dreamscape's flexible
  3. event handler routines, and some other routines, are usable from C (and are
  4. a vast improvement on Acorn's routines).
  5.  
  6. The program also demonstrates using C to write object-oriented programs,
  7. although C does not provide as many features for encapsulation as C++, and
  8. you don't have C++'s features to make object-oriented programming easier.
  9.  
  10. If you are writing with C, you will have to call the Toolbox SWIs yourself
  11. (via OSLib), which makes the program more low-level and less portable
  12. (although this is academic at the moment, because Dreamscape is only
  13. available for the Toolbox under RISC OS). This does tend to make programs
  14. written like this smaller, though, because many Dreamscape modules do not
  15. have to be linked in, and using C++ for O-O programming can bloat programs a
  16. bit (or a lot, depending on how you look at it :-) ).
  17.