screenthread.h

来自「基于USB接口的GPS应用程序」· C头文件 代码 · 共 32 行

H
32
字号
//---------------------------------------------------------------------------

#ifndef screenthreadH
#define screenthreadH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include "gbl_var.h"

class TForm1;
class GPS_Nav;
class GPS_Func;
//---------------------------------------------------------------------------
class ScreenThread : public TThread
{
private:
        TForm1 *p_form;
        GPS_Nav *p_gpsnav;
        GPS_Func *p_gpsfunc;
        unsigned short count;
        allch_rawdata_disp DispRawdata;
        navinfo_disp DispNavInfo;
        navresult_channel  NavResult[CH_NUM];
        channel_disp  result_pt[CH_NUM];
protected:
        void __fastcall Execute();
public:
        __fastcall ScreenThread(bool CreateSuspended, void* p);
        void __fastcall update_disp(void);
};
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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