office-gobmx/sal/inc/backtraceasstring.hxx
Venetia Furtado 8d52aac823 tdf#143148: Use pragma once instead of include guards
Change-Id: I83c7405c61edd2c92ad624064326ba9c9e971313
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153164
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2023-06-16 17:38:03 +02:00

21 lines
565 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/.
*/
#pragma once
#include <sal/config.h>
#include <rtl/ustring.hxx>
#include <sal/types.h>
namespace osl::detail
{
/// Build a debugging backtrace from current PC location.
OUString backtraceAsString(sal_uInt32 maxDepth);
}