hikyuu2/hikyuu_cpp/hikyuu/hikyuu.h

36 lines
590 B
C++
Raw Normal View History

2015-01-07 01:26:14 +08:00
/*
* hikyuu.h
*
* Created on: 2011-11-13
* Author: fasiondog
*/
#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
/**
* Hikyuu当前版本号
* @return
*/
string HKU_API getVersion();
2015-01-07 01:26:14 +08:00
} /* namespace */
#endif /* HIKYUU_H_ */