Changeset 504 for trunk


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

Changes for AIX.

Location:
trunk/gsdl/src/colservr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/source.cpp

    r271 r504  
    1212/*
    1313   $Log$
     14   Revision 1.6  1999/08/31 22:49:01  rjmcnab
     15   Changes for AIX.
     16
    1417   Revision 1.5  1999/06/16 02:00:33  sjboddie
    1518   Few changes to get getParent filter option to return metadata of
     
    8487
    8588
     89bool operator==(const sourceptr &x, const sourceptr &y) {
     90  return (x.s == y.s);
     91}
     92
     93bool operator<(const sourceptr &x, const sourceptr &y) {
     94  return (x.s < y.s);
     95}
     96
     97
    8698// thesource remains the property of the calling code but
    8799// should not be deleted until it is removed from this list.
  • trunk/gsdl/src/colservr/source.h

    r271 r504  
    5353
    5454  sourceptr () {s=NULL;}
     55  ~sourceptr () {}
    5556};
     57
     58bool operator==(const sourceptr &x, const sourceptr &y);
     59bool operator<(const sourceptr &x, const sourceptr &y);
    5660
    5761typedef vector<sourceptr> sourceptrlist;
Note: See TracChangeset for help on using the changeset viewer.