Changeset 503 for trunk


Ignore:
Timestamp:
1999-09-01T10:48:36+12:00 (25 years ago)
Author:
rjmcnab
Message:

Added a match mode for some and all.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/queryinfo.h

    r398 r503  
    4747  text_t querystring;
    4848  int search_type; // 0 = boolean, 1 = ranked
     49  int match_mode; // 0 = some, 1 = all
    4950  int casefolding;
    5051  int stemming;
     
    9899
    99100  docresultclass();
     101  ~docresultclass() {}
    100102  void clear ();
    101103 
     
    105107  docresultclass &operator=(const docresultclass &d);
    106108};
     109
     110bool operator==(const docresultclass &x, const docresultclass &y);
     111bool operator<(const docresultclass &x, const docresultclass &y);
     112
    107113
    108114// stream output for debugging purposes
Note: See TracChangeset for help on using the changeset viewer.