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

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

Lots of stuff :-)

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 818 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 165 1999-02-21 22:33:58Z 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 {
22public:
23 pageaction ();
24 virtual ~pageaction ();
25
26 text_t get_action_name () {return "p";}
27 bool check_cgiargs (cgiargsclass &args, ostream &logout);
28 void get_cgihead_info (cgiargsclass &args, response_t &response,
29 text_t &response_data, ostream &logout);
30 bool do_action (cgiargsclass &args, outconvertclass &outconvert,
31 recptproto *collectproto, ostream &textout,
32 ostream &logout);
33};
34
35
36#endif
Note: See TracBrowser for help on using the repository browser.