Changeset 20574 for gsdl


Ignore:
Timestamp:
2009-09-10T10:42:28+12:00 (15 years ago)
Author:
mdewsnip
Message:

Removed unused output_content() function in listsetsaction.

Location:
gsdl/trunk/runtime-src/src/oaiservr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/runtime-src/src/oaiservr/listsetsaction.cpp

    r16717 r20574  
    8787}
    8888
    89 bool listsetsaction::output_content(ostream &output, recptproto *protocol, text_tset &collections, oaiargs &params)
    90 {
    91   text_tset::iterator here = collections.begin();
    92   text_tset::iterator end  = collections.end();
    93   while (here != end) {
    94     text_t collect = *here;
    95     this->output_content(output, protocol, params);
    96     ++here;
    97   }
    98   return true;
    99 }
    10089
    10190bool listsetsaction::output_content(ostream &output, recptproto *protocol, oaiargs &params)
  • gsdl/trunk/runtime-src/src/oaiservr/listsetsaction.h

    r15387 r20574  
    77  listsetsaction() : oaiaction("ListSets") { };
    88  virtual bool validateAction(recptproto *protocol, oaiargs &params);
    9   bool output_content(ostream &output, recptproto *protocol, text_tset &collections, oaiargs &params);
     9
    1010 protected:
    1111  int  setNumber;
Note: See TracChangeset for help on using the changeset viewer.