2015-01-07 01:26:14 +08:00
|
|
|
|
/*
|
|
|
|
|
* hikyuu.h
|
|
|
|
|
*
|
|
|
|
|
* Created on: 2011-11-13
|
|
|
|
|
* Author: fasiondog
|
|
|
|
|
*/
|
|
|
|
|
|
2019-08-03 21:53:24 +08:00
|
|
|
|
#pragma once
|
2015-01-07 01:26:14 +08:00
|
|
|
|
#ifndef HIKYUU_H_
|
|
|
|
|
#define HIKYUU_H_
|
|
|
|
|
|
2018-08-31 02:50:06 +08:00
|
|
|
|
#include "KData.h"
|
2015-01-07 01:26:14 +08:00
|
|
|
|
#include "StockManager.h"
|
|
|
|
|
#include "utilities/util.h"
|
2019-03-09 23:30:04 +08:00
|
|
|
|
#include "utilities/Parameter.h"
|
2015-01-07 01:26:14 +08:00
|
|
|
|
|
|
|
|
|
namespace hku {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Hikyuu核心初始化,客户端必须在程序入口处调用
|
|
|
|
|
* @param config_file_name 配置信息文件名
|
|
|
|
|
* @ingroup StockManage
|
|
|
|
|
*/
|
|
|
|
|
void HKU_API hikyuu_init(const string& config_file_name);
|
|
|
|
|
|
2016-04-03 00:08:31 +08:00
|
|
|
|
|
2018-09-10 02:21:19 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取Hikyuu当前版本号
|
|
|
|
|
* @return 版本号
|
|
|
|
|
*/
|
|
|
|
|
string HKU_API getVersion();
|
|
|
|
|
|
2015-01-07 01:26:14 +08:00
|
|
|
|
} /* namespace */
|
|
|
|
|
|
|
|
|
|
#endif /* HIKYUU_H_ */
|