hikyuu2/hikyuu_cpp/hikyuu/hikyuu.h
2019-03-09 23:30:04 +08:00

35 lines
577 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* hikyuu.h
*
* Created on: 2011-11-13
* Author: fasiondog
*/
#ifndef HIKYUU_H_
#define HIKYUU_H_
#include "KData.h"
#include "StockManager.h"
#include "utilities/util.h"
#include "utilities/Parameter.h"
namespace hku {
/**
* Hikyuu核心初始化客户端必须在程序入口处调用
* @param config_file_name 配置信息文件名
* @ingroup StockManage
*/
void HKU_API hikyuu_init(const string& config_file_name);
/**
* 获取Hikyuu当前版本号
* @return 版本号
*/
string HKU_API getVersion();
} /* namespace */
#endif /* HIKYUU_H_ */