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

Last change on this file since 173 was 173, checked in by rjmcnab, 25 years ago

Fixed a few things.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 843 bytes
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 173 1999-02-28 20:00:19Z rjmcnab $
9 *
10 *********************************************************************/
11
12
13#ifndef PAGEACTION_H
14#define PAGEACTION_H
15
16
17#include "gsdlconf.h"
18#include "action.h"
19
20
21class pageaction : public action {
22
23public:
24 pageaction ();
25 virtual ~pageaction ();
26
27 text_t get_action_name () {return "p";}
28
29 bool check_cgiargs (cgiargsclass &args, ostream &logout);
30
31 void get_cgihead_info (cgiargsclass &args, response_t &response,
32 text_t &response_data, ostream &logout);
33
34 bool do_action (cgiargsclass &args, recptproto *collectproto,
35 displayclass &disp, outconvertclass &outconvert,
36 ostream &textout, ostream &logout);
37};
38
39
40#endif
Note: See TracBrowser for help on using the repository browser.