mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-02 03:48:19 +08:00
88 lines
2.3 KiB
C
88 lines
2.3 KiB
C
|
/*
|
|||
|
* MarketInfo.h
|
|||
|
*
|
|||
|
* Created on: 2011-12-5
|
|||
|
* Author: fasiondog
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef MARKETINFO_H_
|
|||
|
#define MARKETINFO_H_
|
|||
|
|
|||
|
#include "DataType.h"
|
|||
|
|
|||
|
namespace hku {
|
|||
|
|
|||
|
/**
|
|||
|
* 市场信息记录
|
|||
|
* @ingroup StockManage
|
|||
|
*/
|
|||
|
class HKU_API MarketInfo {
|
|||
|
public:
|
|||
|
/** 默认构造函数,返回Null<MarketInfo>() */
|
|||
|
MarketInfo();
|
|||
|
|
|||
|
/**
|
|||
|
* @param market 市场简称
|
|||
|
* @param name 市场名称
|
|||
|
* @param description 市场描述
|
|||
|
* @param code 基本指数:用于读取该市场的交易日历
|
|||
|
* @param lastDate 市场当前最后日期
|
|||
|
*/
|
|||
|
MarketInfo(const string& market, const string& name,
|
|||
|
const string& description, const string& code,
|
|||
|
const Datetime& lastDate);
|
|||
|
|
|||
|
/** 获取市场简称 */
|
|||
|
const string& market() const { return m_market; }
|
|||
|
|
|||
|
/** 获取市场名称 */
|
|||
|
const string& name() const { return m_name; }
|
|||
|
|
|||
|
/** 获取市场描述 */
|
|||
|
const string& description() const { return m_description; }
|
|||
|
|
|||
|
/** 获取该市场对应的指数代码 */
|
|||
|
const string& code() const { return m_code; }
|
|||
|
|
|||
|
/** 获取市场数据的最后更新日期 */
|
|||
|
Datetime lastDate() const { return m_lastDate; }
|
|||
|
|
|||
|
private:
|
|||
|
string m_market; //市场标识
|
|||
|
string m_name; //市场名称
|
|||
|
string m_description; //描述信息
|
|||
|
string m_code; //市场对应的指数代码,用于获取交易日历
|
|||
|
Datetime m_lastDate; //当前市场最后日期
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* 输出市场信息,如:
|
|||
|
* MarketInfo(SH, 上海证劵交易所, 上海市场, 000001, 2011-Dec-06 00:00:00)
|
|||
|
* @ingroup StockManage
|
|||
|
*/
|
|||
|
HKU_API std::ostream & operator<<(std::ostream &, const MarketInfo&);
|
|||
|
|
|||
|
|
|||
|
///////////////////////////////////////////////////////////////////////////////
|
|||
|
//
|
|||
|
// 关系比较函数
|
|||
|
//
|
|||
|
///////////////////////////////////////////////////////////////////////////////
|
|||
|
bool operator==(const MarketInfo&, const MarketInfo&);
|
|||
|
bool operator!=(const MarketInfo&, const MarketInfo&);
|
|||
|
|
|||
|
/** 相等比较 */
|
|||
|
inline bool operator==(const MarketInfo& m1, const MarketInfo& m2) {
|
|||
|
return m1.market() == m2.market();
|
|||
|
}
|
|||
|
|
|||
|
/** 不等比较 */
|
|||
|
inline bool operator!=(const MarketInfo& m1, const MarketInfo& m2) {
|
|||
|
return m1.market() != m2.market();
|
|||
|
}
|
|||
|
|
|||
|
} /* namespace hikyuu */
|
|||
|
|
|||
|
#endif /* MARKETINFO_H_ */
|