mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
22 lines
369 B
C++
22 lines
369 B
C++
/*
|
|
* Copyright(C) 2021 hikyuu.org
|
|
*
|
|
* Create on: 2021-12-08
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef INDICATOR_CRT_TIMELINEVOL_H_
|
|
#define INDICATOR_CRT_TIMELINEVOL_H_
|
|
|
|
#include "../Indicator.h"
|
|
|
|
namespace hku {
|
|
|
|
Indicator HKU_API TIMELINEVOL();
|
|
Indicator HKU_API TIMELINEVOL(const KData&);
|
|
|
|
} // namespace hku
|
|
|
|
#endif /* INDICATOR_CRT_TIMELINEVOL_H_ */
|