port.h
来自「This a framework to test new ideas in tr」· C头文件 代码 · 共 54 行
H
54 行
/*************************************************************************** port.h - The definition for the port ------------------- begin : 2002 authors : Linus Gasser emails : linus.gasser@epfl.ch ***************************************************************************//*************************************************************************** Changes ------- date - name - description 02-12-19 - ineiti - begin **************************************************************************//*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/#ifndef PORT_H__#define PORT_H__#include <qstring.h>#include <qfile.h>#include <qcstring.h>#include "swr_types.h"#include "block.h"#include "fifocmd.h"/** * @short Holds the definition of a port */class Port : public Block {public: Port( FifoCmd *c, int m_i, int p ); QByteArray getData( );protected: FifoCmd *radio; int module_id; int portNum;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?