home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / GENMAN.ZIP / GENMAN.TPL < prev    next >
Text File  |  1993-03-13  |  745b  |  42 lines

  1. //-----------------------------------------------------------------
  2. //
  3. //               foo.h
  4. //
  5.  
  6. #ifndef FOO_H
  7. #define FOO_H
  8.  
  9. // .NAME foo - a class to manage foo objects
  10. // .LIBRARY Base
  11. // .HEADER General utility routines
  12. // .INCLUDE base/foo.h
  13. // .FILE foo.cxx
  14. // .FILE foo.h
  15.  
  16. // .SECTION Description
  17. // A paragraph describing the class the include file defines.
  18. // Use a blank line to terminate the paragraph.
  19.  
  20. // .SECTION Caveats
  21. // A paragraph describing unusual features of the class.
  22. // This paragraph may be omitted.
  23.  
  24. #ifndef STDIO_HXX
  25. #include <stdio.hxx>
  26. #endif
  27.  
  28. class foo
  29.     {
  30. private:
  31.     int *bar;
  32.     // Pointer to character string struct.
  33.  
  34. protected:
  35.  
  36. public:
  37.     foo( const char *str= 0 );
  38.     ~foo();
  39.     };
  40.  
  41. #endif // FOO_H
  42.