2011-09-08 13:50:30 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
2013-04-19 21:10:42 +01:00
|
|
|
* This file is part of the LibreOffice project.
|
2011-09-08 13:50:30 +01:00
|
|
|
*
|
2013-04-19 21:10:42 +01:00
|
|
|
* 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/.
|
2011-09-08 13:50:30 +01:00
|
|
|
*/
|
2011-12-06 21:15:10 +00:00
|
|
|
|
2013-10-23 19:17:00 +02:00
|
|
|
#ifndef INCLUDED_COMPHELPER_XMLTOOLS_HXX
|
|
|
|
#define INCLUDED_COMPHELPER_XMLTOOLS_HXX
|
2011-09-08 13:50:30 +01:00
|
|
|
|
|
|
|
#include <rtl/strbuf.hxx>
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#include <comphelper/comphelperdllapi.h>
|
|
|
|
|
|
|
|
namespace comphelper
|
|
|
|
{
|
|
|
|
namespace xml
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
COMPHELPER_DLLPUBLIC OString makeXMLChaff();
|
2017-12-11 14:38:54 +01:00
|
|
|
COMPHELPER_DLLPUBLIC OString generateGUIDString();
|
|
|
|
|
2011-09-08 13:50:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|