source: trunk/gsdl/src/recpt/pingaction.h@ 357

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

Merged sources.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 781 bytes
Line 
1/**********************************************************************
2 *
3 * pingaction.h --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * PUT COPYRIGHT NOTICE HERE
7 *
8 * $Id: pingaction.h 172 1999-02-25 21:59:02Z rjmcnab $
9 *
10 *********************************************************************/
11
12
13#ifndef PINGACTION_H
14#define PINGACTION_H
15
16#include "gsdlconf.h"
17#include "action.h"
18
19
20class pingaction : public action {
21public:
22 pingaction ();
23 virtual ~pingaction () {}
24
25 text_t get_action_name () {return "ping";}
26 void get_cgihead_info (cgiargsclass &args, response_t &response,
27 text_t &response_data, ostream &logout);
28 bool do_action (cgiargsclass &args, recptproto *collectproto,
29 displayclass &disp, outconvertclass &outconvert,
30 ostream &textout, ostream &logout);
31};
32
33
34#endif
Note: See TracBrowser for help on using the repository browser.