// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*- /* * Copyright (C) 2014 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Marco Trevisan */ #ifndef UNITY_WEAK_PTR #define UNITY_WEAK_PTR #include namespace unity { template struct uweak_ptr : std::weak_ptr { uweak_ptr() {} uweak_ptr(std::shared_ptr const& p) : std::weak_ptr(p) {} uweak_ptr(uweak_ptr const& p) : std::weak_ptr(p) {} T* get() const { return this->lock().get(); } operator std::shared_ptr() const { return this->lock(); } operator bool() const { return !this->expired(); } T* operator->() const { return this->lock().get(); } T const& operator*() const { return *(this->lock()); } }; } // unity namespace namespace std { template void swap(unity::uweak_ptr &lhs, unity::uweak_ptr &rhs) { lhs.swap(rhs); } } #endif // UNITY_WEAK_PTR