hikyuu2/hikyuu_cpp/hikyuu/global/sysinfo.h
2023-09-28 01:52:51 +08:00

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