Initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
//---------------------------------------------------------------------------
|
||||
#ifndef BacDPThreadH
|
||||
#define BacDPThreadH
|
||||
|
||||
//#include <System.JSON.hpp>
|
||||
#include <vector>
|
||||
|
||||
#include "BaseThread.h"
|
||||
//---------------------------------------------------------------------------
|
||||
using namespace std;
|
||||
|
||||
class TDataParseThread : public TBaseThread
|
||||
{
|
||||
private:
|
||||
HANDLE m_hDataEvent; // Êý¾Ý´¦Àí»¥³â±äÁ¿
|
||||
vector<String> m_aData;
|
||||
|
||||
protected:
|
||||
virtual void __fastcall Execute();
|
||||
|
||||
public:
|
||||
__fastcall TDataParseThread();
|
||||
__fastcall ~TDataParseThread();
|
||||
|
||||
void __fastcall ParseData(String sData);
|
||||
void __fastcall Reset();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user