office-gobmx/xmlsecurity/inc/xsecfwdllapi.h
Miklos Vajna 9691cea443 xmlsecurity: instantiate SignatureVerifierImpl directly in XSecController
Going via UNO for a class in the same module sounds like an overkill.

Change-Id: Iaa5b31d1b888c8d3f1c9b47ee787504191ce3d7d
Reviewed-on: https://gerrit.libreoffice.org/31148
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
2016-11-24 14:22:45 +00:00

23 lines
710 B
C

/* -*- 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_XMLSECURITY_INC_XSECFWDLLAPI_H
#define INCLUDED_XMLSECURITY_INC_XSECFWDLLAPI_H
#include <sal/types.h>
#if defined(XSECFW_DLLIMPLEMENTATION)
#define XSECFW_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
#else
#define XSECFW_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
#endif
#endif // INCLUDED_XMLSECURITY_INC_XSECFWDLLAPI_H
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */