1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
base / win / reference.h [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_WIN_REFERENCE_H_
#define BASE_WIN_REFERENCE_H_
#include <windows.foundation.collections.h>
#include <wrl/implements.h>
#include <type_traits>
#include <utility>
namespace base {
namespace win {
// Implementation of the UWP's IReference interface.
template <typename T>
class Reference
: public Microsoft::WRL::RuntimeClass<
Microsoft::WRL::RuntimeClassFlags<
Microsoft::WRL::WinRt | Microsoft::WRL::InhibitRoOriginateError>,
ABI::Windows::Foundation::IReference<T>> {
public:
using AbiT = typename ABI::Windows::Foundation::Internal::GetAbiType<
typename ABI::Windows::Foundation::IReference<T>::T_complex>::type;
explicit Reference(const AbiT& value) : value_(value) {}
explicit Reference(AbiT&& value) : value_(std::move(value)) {}
Reference(const Reference&) = delete;
Reference& operator=(const Reference&) = delete;
// ABI::Windows::Foundation::IReference:
IFACEMETHODIMP get_Value(AbiT* value) override {
*value = value_;
return S_OK;
}
private:
~Reference() override = default;
AbiT value_;
};
} // namespace win
} // namespace base
#endif // BASE_WIN_REFERENCE_H_