Realm C++ SDK 버전 v2.2.0

col_key.hpp

1
2//
3//저작권 2024 Realm Inc.
4//
5// Apache 라이선스, 버전 2.0("라이선스")에 따라 라이선스가 부여됩니다.
6// 라이선스를 준수하는 경우를 제외하고는 이 파일을 사용할 수 없습니다.
7// 다음에서 라이선스 사본을 얻을 수 있습니다.
8//
9// http://www.apache.org/licences/LICENSE-2.0
10//
11// 관련 법률에서 요구하거나 문서로 동의하지 않는 한, 소프트웨어
12// 라이선스에 따라 배포되는 것은 '있는 그대로' 배포됩니다,
13// Express 묵시적이든 어떤 종류의 보증이나 조건도 제공하지 않습니다.
14// 권한을 관리하는 특정 언어에 대한 내용은 라이선스를 참조하세요.
15// 라이선스에 따른 제한 사항.
16//
18
19#ifndef CPPREALM_BRIDGE_COL_KEY_HPP
20#define CPPRALM_BRIDGE_COL_KEY_HPP
21
22#include <cinttypes>
23
24네임스페이스 영역 {
25 구조체 ColKey;
26}
27namespace realm::internal::bridge {
28 구조체 col_key {
29 col_key() noException;
30 col_key(const col_key& other) ;
31 col_key& operator=(const col_key& other) ;
32 col_key(col_key&& other);
33 col_key& 연산자=(col_key&& other);
34 ~col_key() = 기본값;
35 col_key(int64_t); //NOLINT(google-explicit-constructor)
36 col_key(const ColKey&); //NOLINT(google-explicit-constructor)
37 연산자 ColKey() const; //NOLINT(google-explicit-constructor)
38 연산자 bool() const;
39 [[nodiscard]] int64_t value() const;
40 private:
41 uint64_t m_col_key;
42 };
43}
44
45#endif //CPPREALM_BRIDGE_COL_KEY_HPP
정의: col_key.hpp:28