HMDemo/cppLib/CalculateInfo.h

18 lines
389 B
C
Raw Normal View History

2024-04-24 10:43:47 +08:00
//
2024-05-28 19:32:20 +08:00
// Created on 2024/5/28.
2024-04-24 10:43:47 +08:00
//
// Node APIs are not fully supported. To solve the compilation error of the interface cannot be found,
// please include "napi/native_api.h".
2024-05-28 19:32:20 +08:00
#ifndef HM4DEMO_CALCULATEINFO_H
#define HM4DEMO_CALCULATEINFO_H
2024-04-24 10:43:47 +08:00
#include <string>
struct CalculateInfo {
std::string name;
std::string versionName;
int versionCode;
};
2024-05-28 19:32:20 +08:00
#endif //HM4DEMO_CALCULATEINFO_H