Changeset 2917 in ntrip for trunk/BNC/bnctime.cpp


Ignore:
Timestamp:
Jan 27, 2011, 5:39:35 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnctime.cpp

    r2566 r2917  
    8585bool bncTime::operator!=(const bncTime &time1) const {
    8686  if ( ((*this) - time1) != 0 ) return 1;
     87  return 0;
     88}
     89
     90//
     91//////////////////////////////////////////////////////////////////////////////
     92bool bncTime::operator==(const bncTime &time1) const {
     93  if ( ((*this) - time1) == 0 ) return 1;
    8794  return 0;
    8895}
Note: See TracChangeset for help on using the changeset viewer.