binexstream.hpp

来自「一个gps小工具包」· HPP 代码 · 共 56 行

HPP
56
字号
#pragma ident "$Id: //depot/msn/main/code/shared/gpstk/BinexStream.hpp#1 $"/** * @file BinexStream.hpp * File stream for RINEX meteorological files */#ifndef GPSTK_BINEXSTREAM_HPP#define GPSTK_BINEXSTREAM_HPP#include "FFBinaryStream.hpp"namespace gpstk{   /** @addtogroup Binex */   //@{      /**       * This class performs file i/o on a BINEX file for the        * BinexData classes.       *       * @sa binex_read_write.cpp for an example.       * @sa binex_test.cpp for an example.       * @sa BinexData.       *       */   class BinexStream : public FFBinaryStream   {   public:         /// Destructor      virtual ~BinexStream() {}               /// Default constructor      BinexStream() {}               /** Constructor           * Opens a file named \a fn using ios::openmode \a mode.          */      BinexStream(const char* fn,                  std::ios::openmode mode=std::ios::in | std::ios::binary)            : FFBinaryStream(fn, mode) {};         /// Opens a file named \a fn using ios::openmode \a mode.      virtual void      open(const char* fn, std::ios::openmode mode)      {          FFBinaryStream::open(fn, mode);       }   };   //@}} // namespace gpstk#endif // GPSTK_BINEXSTREAM_HPP

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?