2015-07-08 11:20:19 +02:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
2020-08-06 14:36:13 +00:00
|
|
|
#pragma once
|
2015-07-08 11:20:19 +02:00
|
|
|
|
|
|
|
#include <sal/config.h>
|
|
|
|
|
2015-09-01 18:55:30 +02:00
|
|
|
namespace configmgr {
|
|
|
|
class Components;
|
|
|
|
struct Data;
|
|
|
|
}
|
2015-07-08 11:20:19 +02:00
|
|
|
|
2020-05-08 10:59:40 +02:00
|
|
|
namespace configmgr::dconf {
|
2015-07-08 11:20:19 +02:00
|
|
|
|
2015-10-21 13:47:03 +02:00
|
|
|
void readLayer(Data & data, int layer);
|
2015-07-08 11:20:19 +02:00
|
|
|
|
2015-09-01 18:55:30 +02:00
|
|
|
void writeModifications(Components & components, Data & data);
|
|
|
|
|
2020-05-08 10:59:40 +02:00
|
|
|
}
|
2015-07-08 11:20:19 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|