示例#1
0
文件: CTime.hpp 项目: gg-uah/GARouter
 const int operator- (const CTime & other) const {
     return int(this->getTimet() - other.getTimet());
 }
示例#2
0
文件: CTime.hpp 项目: gg-uah/GARouter
 bool operator>= (const CTime & other) const {
     return (this->getTimet() >= other.getTimet());
 }