From 741629f48a3fe72fb1e9fb68077446907585e852 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Sep 2014 16:05:43 +0200 Subject: Some glue for using std::unique_ptr with the Boost Pointer Container Library Change-Id: Ie975e963ed64fb96542a9771f85eef72d8266496 --- include/o3tl/ptr_container.hxx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 include/o3tl/ptr_container.hxx (limited to 'include/o3tl') diff --git a/include/o3tl/ptr_container.hxx b/include/o3tl/ptr_container.hxx new file mode 100644 index 000000000000..6ce04c113b53 --- /dev/null +++ b/include/o3tl/ptr_container.hxx @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_O3TL_PTR_CONTAINER_HXX +#define INCLUDED_O3TL_PTR_CONTAINER_HXX + +#include + +#include + +// Some glue for using std::unique_ptr with the Boost Pointer Container Library: + +namespace o3tl { namespace ptr_container { + +template +inline void push_back(C & container, std::unique_ptr && element) { + container.push_back(element.get()); + element.release(); +} + +} } + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit