binexfilteroperators.hpp
来自「一个gps小工具包」· HPP 代码 · 共 42 行
HPP
42 行
#pragma ident "$Id: //depot/msn/main/code/shared/gpstk/BinexFilterOperators.hpp#1 $"/** * @file BinexFilterOperators.hpp * Operators for FileFilter using Binex data */#ifndef GPSTK_BINEXFILTEROPERATORS_HPP#define GPSTK_BINEXFILTEROPERATORS_HPP#include "DayTime.hpp"#include "FileFilter.hpp"#include "BinexData.hpp"#include <set>namespace gpstk{ /** @addtogroup Binex */ //@{ typedef std::binary_function<BinexData, BinexData, bool> BinexDataBinaryOperator; /// Determine if two BinexData objects are equal. struct BinexDataOperatorEquals : public BinexDataBinaryOperator { public: bool operator()(const BinexData& l, const BinexData& r) const { return (l == r); } }; //@}}#endif // GPSTK_BINEXFILTEROPERATORS_HPP
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?