// This file is part of Desktop App Toolkit, // a set of libraries for developing nice desktop applications. // // For license and copyright information please follow this link: // https://github.com/desktop-app/legal/blob/master/LEGAL // #pragma once #include namespace Ui { template QPointer MakeWeak(Widget *object) { return QPointer(object); } template QPointer MakeWeak(const Widget *object) { return QPointer(object); } template QPointer MakeWeak(gsl::not_null object) { return QPointer(object.get()); } template QPointer MakeWeak(gsl::not_null object) { return QPointer(object.get()); } } // namespace Ui