2010-10-12 08:53:47 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-05-15 07:06:56 -05:00
|
|
|
/*************************************************************************
|
2010-02-25 08:59:15 -06:00
|
|
|
*
|
2009-05-15 07:06:56 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-25 08:59:15 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-05-15 07:06:56 -05:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org 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 Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2010-02-25 08:59:15 -06:00
|
|
|
*
|
2009-05-15 07:06:56 -05:00
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "sal/config.h"
|
|
|
|
|
2009-09-04 04:28:28 -05:00
|
|
|
#include <algorithm>
|
2011-11-29 04:54:46 -06:00
|
|
|
#include <cassert>
|
2009-09-04 04:28:28 -05:00
|
|
|
|
2009-05-15 07:06:56 -05:00
|
|
|
#include "rtl/ustring.hxx"
|
|
|
|
|
|
|
|
#include "node.hxx"
|
|
|
|
#include "nodemap.hxx"
|
|
|
|
|
|
|
|
namespace configmgr {
|
|
|
|
|
2009-07-23 05:42:37 -05:00
|
|
|
void cloneNodeMap(NodeMap const & source, NodeMap * target) {
|
2011-11-29 04:54:46 -06:00
|
|
|
assert(target != 0 && target->empty());
|
2009-09-04 04:28:28 -05:00
|
|
|
NodeMap clone(source);
|
|
|
|
for (NodeMap::iterator i(clone.begin()); i != clone.end(); ++i) {
|
2010-05-11 02:29:37 -05:00
|
|
|
i->second = i->second->clone(true);
|
2009-05-15 07:06:56 -05:00
|
|
|
}
|
2009-09-04 04:28:28 -05:00
|
|
|
std::swap(clone, *target);
|
2009-05-15 07:06:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2010-10-12 08:53:47 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|