home *** CD-ROM | disk | FTP | other *** search
- #ifndef __TForm_H
- // Avoid include redundancy
- #define __TForm_H
-
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Include File: tform.h
- // Purpose: Provide a class for handling forms.
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 07-18-94 created
-
- // Constant defines
-
- // Required includes
- #include <tv.h>
-
- // Class declarations
- class TForm {
- private:
- char *cp_action;
- char *cp_enctype;
- char *cp_method;
- public:
- TForm(char *cp_act = NULL, char *cp_enc = NULL, char *cp_met = NULL);
- ~TForm();
- };
-
- // Global variable declarations
-
- // Macros
-
- #endif // __TForm_H
-