?? records.h
字號:
// Records.h: interface for the CRecords class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RECORDS_H__F87964EB_DCBA_4684_8E39_C781D588A7A7__INCLUDED_)
#define AFX_RECORDS_H__F87964EB_DCBA_4684_8E39_C781D588A7A7__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
struct SRecord
{
COleDateTime DateTime;
double open;
double close;
double max;
double min;
public:
CString CHNName;
};
class CRecords
{
public:
CString GetCHNName();
~CRecords();
CRecords(CString tablename,CString excode);
double m_max;
double m_min;
deque <SRecord> m_records;
CString ExCode;
CString TableName;
CString ExName;
};
#endif // !defined(AFX_RECORDS_H__F87964EB_DCBA_4684_8E39_C781D588A7A7__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -