source: gsdl/trunk/runtime-src/src/oaiservr/rfc1807.h@ 16723

Last change on this file since 16723 was 8182, checked in by cs025, 20 years ago

Added OAI Server code to Greenstone

  • Property svn:keywords set to Author Date Id Revision
File size: 503 bytes
Line 
1#include "metaformat.h"
2
3class rfc1807 : public metaformat {
4 protected:
5 void output_metadata_header(ostream &output);
6 virtual void output_metadata_footer(ostream &output);
7 public:
8 rfc1807() : metaformat(){}; // call parent constructor
9 virtual const text_t formatName();
10 virtual const text_t formatPrefix();
11 virtual bool output_record(ostream &output, recptproto *protocol, const text_t &collection,
12 const text_t &record_OID);
13 virtual bool output_formatdata(ostream &output);
14};
Note: See TracBrowser for help on using the repository browser.