home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / INTERNET / WWW / LYNX / SOURCE / SRC0_8A.ZIP / DOSLYNX / INC / TFORM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  649 b   |  34 lines

  1. #ifndef __TForm_H
  2. //    Avoid include redundancy
  3. #define __TForm_H
  4.  
  5. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  6. //
  7. //    Include File:    tform.h
  8. //    Purpose:    Provide a class for handling forms.
  9. //    Remarks/Portability/Dependencies/Restrictions:
  10. //    Revision History:
  11. //        07-18-94    created
  12.  
  13. //    Constant defines
  14.  
  15. //    Required includes
  16. #include <tv.h>
  17.  
  18. //    Class declarations
  19. class TForm    {
  20. private:
  21.     char *cp_action;
  22.     char *cp_enctype;
  23.     char *cp_method;
  24. public:
  25.     TForm(char *cp_act = NULL, char *cp_enc = NULL, char *cp_met = NULL);
  26.     ~TForm();
  27. };
  28.  
  29. //    Global variable declarations
  30.  
  31. //    Macros
  32.  
  33. #endif // __TForm_H
  34.