Realm C++ SDK 버전 v2.2.0

managed_binary.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_MANAGED_BINARY_HPP
20#define CPPREALM_MANAGED_BINARY_HPP
21
22#include <cpprealm/macros.hpp>
23#include <cpprealm/types.hpp>
24
25네임스페이스 영역 {
26 클래스 rbool;
27}
28
29네임스페이스 영역 {
30
31 템플릿<>
32 구조체 managed<std::vector<uint8_t>> : managed_base {
33 사용 관리되는<std::vector<uint8_t>>::managed_base::operator=;
34
35 [[nodiscard]] std::vector<uint8_t> fetch() const;
36 [[nodiscard]] 연산자 std::vector<uint8_t>() const;
37
38 std::vector<uint8_t> operator*() const;
39 void push_back(uint8_t v);
40 uint8_t operator[](uint8_t idx) const;
41 size_t size() const;
42
43 //MARK: - 비교 연산자
44 rbool 연산자==(const std::vector<uint8_t>& rhs) const noException;
45 rbool 연산자!=(const std::vector<uint8_t>& rhs) const noException;
46
47 private:
48 managed() = 기본값;
49 managed(const managed&) = delete;
50 managed ( managed &&) = delete ;
51 managed& 연산자=(const managed&) = delete;
52 managed& 연산자=(managed&&) = delete;
53 템플릿<typename, typename>
54 친구 구조체 managed 됨 ;
55 };
56
57 템플릿<>
58 구조체 managed<std::optional<std::vector<uint8_t>>> : managed_base {
59 사용 managed<std::optional<std::vector<uint8_t>>>::managed_base:: 연산자=;
60
61 [[nodiscard]] std::optional<std::vector<uint8_t>> fetch() const;
62 [[nodiscard]] 연산자 std::optional<std::vector<uint8_t>>() const;
63
64 구조체 상자 {
65 std::optional<std::vector<uint8_t>> 연산자*() const;
66 void push_back(uint8_t v);
67 uint8_t operator[](uint8_t idx) const;
68 size_t size() const;
69 private:
70 상자(managed& 상위 항목) : m_parent(parent) { }
71 std::reference_wrapper<managed<std::optional<std::vector<uint8_t>>>> m_parent;
72 친구 구조체 managed<std::optional<std::vector<uint8_t>>>;
73 };
74
75 std::unique_ptr<box> 연산자->()
76 {
77 return std::make_unique<box>(box(*this));
78 }
79 [[nodiscard]] 상자 연산자*() {
80 반환 상자(*this);
81 }
82
83 //MARK: - 비교 연산자
84 rbool 연산자==(const std::optional<std::vector<uint8_t>>& rhs) const noException;
85 rbool 연산자!=(const std::optional<std::vector<uint8_t>>& rhs) const noException;
86
87 private:
88 managed() = 기본값;
89 managed(const managed&) = delete;
90 managed ( managed &&) = delete ;
91 managed& 연산자=(const managed&) = delete;
92 managed& 연산자=(managed&&) = delete;
93 템플릿<typename, typename>
94 친구 구조체 managed 됨 ;
95 };
96}
97
98
99#endif//CPPREALM_MANAGED_BINARY_HPP
정의: rbool.hpp:36
정의: managed_dictionary.hpp:129
정의: 매크로.hpp:286
정의: obj.hpp:62