mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 04:48:17 +08:00
24 lines
331 B
C++
24 lines
331 B
C++
|
/*
|
||
|
* Context.h
|
||
|
*
|
||
|
* Created on: 2019-03-09
|
||
|
* Author: fasiondog
|
||
|
*/
|
||
|
|
||
|
#ifndef CONTEXT_H_
|
||
|
#define CONTEXT_H_
|
||
|
|
||
|
#include "Stock.h"
|
||
|
#include "utilities/Parameter.h"
|
||
|
|
||
|
namespace hku {
|
||
|
|
||
|
|
||
|
void HKU_API setGlobalContext(const Stock&, const KQuery&);
|
||
|
|
||
|
KData HKU_API getGlobalContextKData();
|
||
|
|
||
|
} /* namespace */
|
||
|
|
||
|
#endif /* CONTEXT_H_ */
|