source: gsdl/trunk/runtime-src/src/oaiservr/metaformatters.h@ 16708

Last change on this file since 16708 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: 370 bytes
Line 
1#include "metaformat.h"
2
3#include <map>
4
5class metaformatters {
6 public:
7 metaformatters();
8 ~metaformatters();
9 bool output_record(ostream &output, recptproto *protocol, text_t &collection, text_t &record_OID, text_t formatName);
10 protected:
11 map<text_t, metaformat *> formatters;
12 addFormat(metaformat *formatter);
13 metaformat *getFormat(text_t &formatName);
14};
Note: See TracBrowser for help on using the repository browser.