source: gsdl/trunk/runtime-src/src/oaiservr/listsetsaction.h@ 20574

Last change on this file since 20574 was 20574, checked in by mdewsnip, 15 years ago

Removed unused output_content() function in listsetsaction.

  • Property svn:keywords set to Author Date Id Revision
File size: 539 bytes
Line 
1#include "oaiaction.h"
2#include "resumptiontoken.h"
3
4class listsetsaction : public oaiaction
5{
6 public:
7 listsetsaction() : oaiaction("ListSets") { };
8 virtual bool validateAction(recptproto *protocol, oaiargs &params);
9
10 protected:
11 int setNumber;
12 int setsOutput;
13 ResumptionToken *replyToken;
14 bool output_content(ostream &output, recptproto *protocol, oaiargs &params);
15 void recurse_content(ostream &output, recptproto *protocol, text_t &collection, const text_t &classifier,
16 text_t setHierarchy, int startSet);
17};
Note: See TracBrowser for help on using the repository browser.