source: trunk/gsdl/src/recpt/pageaction.h@ 284

Last change on this file since 284 was 284, checked in by sjboddie, 25 years ago

lots of small changes

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1/**********************************************************************
2 *
3 * pageaction.h --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * PUT COPYRIGHT NOTICE HERE
7 *
8 * $Id: pageaction.h 284 1999-06-24 05:12:25Z sjboddie $
9 *
10 *********************************************************************/
11
12
13#ifndef PAGEACTION_H
14#define PAGEACTION_H
15
16
17#include "gsdlconf.h"
18#include "action.h"
19#include "receptionist.h"
20
21
22class pageaction : public action {
23
24protected:
25 receptionist *recpt;
26
27public:
28 pageaction ();
29 virtual ~pageaction ();
30
31 text_t get_action_name () {return "p";}
32
33 void set_receptionist (receptionist *therecpt) {recpt=therecpt;}
34 bool check_cgiargs (cgiargsinfoclass &argsinfo, cgiargsclass &args,
35 ostream &logout);
36
37 void get_cgihead_info (cgiargsclass &args, response_t &response,
38 text_t &response_data, ostream &logout);
39
40 void define_internal_macros (displayclass &disp, cgiargsclass &args,
41 recptproto *collectproto, ostream &logout);
42
43 bool do_action (cgiargsclass &args, recptproto *collectproto,
44 displayclass &disp, outconvertclass &outconvert,
45 ostream &textout, ostream &logout);
46};
47
48
49#endif
Note: See TracBrowser for help on using the repository browser.