This commit is contained in:
@@ -198,10 +198,6 @@
|
||||
RelativePath=".\CPRobotDlg.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\DataMgr.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\EventHandler.cpp"
|
||||
>
|
||||
@@ -244,10 +240,6 @@
|
||||
RelativePath=".\CPRobotDlg.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\DataMgr.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\EventHandler.h"
|
||||
>
|
||||
|
||||
BIN
CPRobotDlg.cpp
BIN
CPRobotDlg.cpp
Binary file not shown.
21
CPRobotDlg.h
21
CPRobotDlg.h
@@ -2,20 +2,15 @@
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#include "DataMgr.h"
|
||||
#include "afxwin.h"
|
||||
#include "EventHandler.h"
|
||||
#include "OptionEventHandler.h"
|
||||
#include "Trader.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
struct OPTION_DATA
|
||||
{
|
||||
std::string m_Code;
|
||||
float m_afOfferPrice[5];
|
||||
int m_aiOfferCnt[5];
|
||||
float m_afBidPrice[5];
|
||||
int m_aiBidCnt[5];
|
||||
};
|
||||
using std::vector;
|
||||
using std::string;
|
||||
|
||||
// CCPRobotDlg 대화 상자
|
||||
class CCPRobotDlg : public CDialog, public IEventHandler
|
||||
@@ -36,7 +31,6 @@ public:
|
||||
|
||||
afx_msg void OnBnClickedRadioBid();
|
||||
afx_msg void OnBnClickedRadioAsk();
|
||||
afx_msg void OnEnChangeEditOrderingprice();
|
||||
|
||||
virtual void Received();
|
||||
|
||||
@@ -56,17 +50,16 @@ protected:
|
||||
HICON m_hIcon;
|
||||
|
||||
private:
|
||||
//void UpdateDataCustom(const BOOL bWndToVariable);
|
||||
|
||||
CListBox m_ResultList;
|
||||
|
||||
CDataMgr* m_pDataMgr;
|
||||
std::vector<std::string> m_OpCodeList;
|
||||
vector<string> m_OpCodeList;
|
||||
ISysDibPtr m_pOpJpBid;
|
||||
CEventHandler m_EventHandler;
|
||||
|
||||
|
||||
public:
|
||||
BOOL m_bSell;
|
||||
int m_iBalance;
|
||||
int m_iAmountSet;
|
||||
int m_iMinPriceSet;
|
||||
int m_iMaxPriceSet;
|
||||
|
||||
Reference in New Issue
Block a user