Files
libreoffice/include/vcl/vclmain.hxx
Bjoern Michaelsen 3ecb9b4bd7 tdf#99352: assert on stray VclPtrs past DeInit
- ignore on Windows for now, as it is acting up

Change-Id: I98dbb887ed556b58188870c3eb3de1327bc58109
Reviewed-on: https://gerrit.libreoffice.org/35816
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2017-04-04 14:35:16 +00:00

34 lines
914 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_VCL_VCLMAIN_HXX
#define INCLUDED_VCL_VCLMAIN_HXX
#include <sal/config.h>
#ifdef DBG_UTIL
#include <vcl/dllapi.h>
#endif
namespace vclmain {
// Function called from vclmain's implementation of main, needs to be
// implemented by the application and needs to instantiate a (static, derived)
// instance of Application (where the Application constructor takes care to link
// that instance to ImplSVData.mpApp):
void createApplication();
#ifdef DBG_UTIL
VCL_DLLPUBLIC bool isAlive();
#endif
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */