ImSQL
C++ 기반 SQL 자동화 및 라이선스 관리 엔진
Loading...
Searching...
No Matches
license_info.hpp
Go to the documentation of this file.
1
11#pragma once
12#include <utils/utils.hpp>
13#include <string>
14#include <vector>
15
16namespace license {
17
22 std::string license_key;
23 std::string version;
24 std::string product;
25 std::string issued_at;
26 std::string expires_at;
27 std::vector<std::string> features;
28 std::string signature;
29};
30
38bool parseLicenseJson(const std::string& data, LicenseInfo& info, const std::string& pem_code);
39
47std::string GetBaseboardSerialNumber();
48
49} // namespace license // end of LicenseInfo
라이센스 정보
Definition license_info.hpp:21
다양한 범용 유틸리티 함수와 공통 설정을 포함하는 헤더 파일입니다.