mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-05 05:17:47 +08:00
32 lines
448 B
C++
32 lines
448 B
C++
/*
|
|
* Copyright (c) 2023 hikyuu.org
|
|
*
|
|
* Created on: 2023-09-26
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#ifndef HKU_API
|
|
#define HKU_API
|
|
#endif
|
|
|
|
namespace hku {
|
|
|
|
/**
|
|
* 获取Hikyuu当前版本号
|
|
* @return 版本号
|
|
*/
|
|
std::string HKU_API getVersion();
|
|
|
|
/**
|
|
* 获取详细版本号,包含构建时间
|
|
*/
|
|
std::string HKU_API getVersionWithBuild();
|
|
|
|
/** 发送反馈信息 */
|
|
void sendFeedback();
|
|
|
|
} // namespace hku
|