LibrePCB Developers Documentation
Loading...
Searching...
No Matches
rusthandle.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_CORE_RUSTHANDLE_H
21#define LIBREPCB_CORE_RUSTHANDLE_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27
28/*******************************************************************************
29 * Namespace / Forward Declarations
30 ******************************************************************************/
31namespace librepcb {
32
33/*******************************************************************************
34 * Class RustHandle
35 ******************************************************************************/
36
40template <typename T>
41struct RustHandle final {
42 typedef void (*Deleter)(T*);
43
44 RustHandle() = delete;
45 RustHandle(const RustHandle& other) = delete;
46 RustHandle& operator=(const RustHandle& rhs) = delete;
47
48 RustHandle(T& obj, Deleter deleter) noexcept
49 : mObj(&obj), mDeleter(deleter) {}
50 RustHandle(RustHandle&& other) noexcept
51 : mObj(other.mObj), mDeleter(other.mDeleter) {
52 other.mObj = nullptr;
53 }
54 ~RustHandle() noexcept {
55 if (mObj) mDeleter(mObj);
56 }
57
58 const T* operator*() const noexcept {
59 Q_ASSERT(mObj);
60 return mObj;
61 }
62 T* operator*() noexcept {
63 Q_ASSERT(mObj);
64 return mObj;
65 }
66
67 T* mObj;
69};
70
71/*******************************************************************************
72 * End of File
73 ******************************************************************************/
74
75} // namespace librepcb
76
77#endif
Definition occmodel.cpp:76
Scoped pointer for Rust objects.
Definition rusthandle.h:41
void(* Deleter)(T *)
Definition rusthandle.h:42
T * operator*() noexcept
Definition rusthandle.h:62
RustHandle(RustHandle &&other) noexcept
Definition rusthandle.h:50
RustHandle & operator=(const RustHandle &rhs)=delete
Deleter mDeleter
Definition rusthandle.h:68
RustHandle(const RustHandle &other)=delete
T * mObj
Definition rusthandle.h:67
RustHandle(T &obj, Deleter deleter) noexcept
Definition rusthandle.h:48
const T * operator*() const noexcept
Definition rusthandle.h:58
~RustHandle() noexcept
Definition rusthandle.h:54