📄 binexstream.hpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -