home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / dtx9202 / borhot / clasliba.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-07  |  712 b   |  24 lines

  1. /* ------------------------------------------------------ */
  2. /*                    CLASSLIBA.CPP                       */
  3. /*            (c) 1990 Borland International              */
  4. /*                 All rights reserved.                   */
  5. /* ------------------------------------------------------ */
  6. /*  veröffentlicht in: DOS toolbox 2'92                   */
  7. /* ------------------------------------------------------ */
  8.  
  9. // Do not run this code (see text)
  10.  
  11. #include <strng.h>
  12. #include <list.h>
  13.  
  14. int main() {
  15.   List   l;
  16.   String s;
  17.  
  18.   l.add(s);
  19.   return 0;
  20. }
  21. /* ------------------------------------------------------ */
  22. /*                 Ende von CLASSLIBA.CPP                 */
  23.  
  24.