This commit is contained in:
2013-08-22 13:46:16 +00:00
parent 9461daf75c
commit eb3ece8195
3 changed files with 7 additions and 22 deletions

View File

@@ -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"
>

Binary file not shown.

View File

@@ -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;