libreoffice-online/common/DummyTraceEventEmitter.cpp
Tor Lillqvist d6569159b7 Output a Trace Event metadata event identifying each named thread
Move the generic dummy implementation of
TraceEvent::emitOneRecording() to a source file of its own. (That is
the one which is used in test and tool executables.)

Signed-off-by: Tor Lillqvist <tml@collabora.com>
Change-Id: I81cab07e5a6852b42d278a5446c13c3825cf546e
2021-06-21 12:43:17 +03:00

18 lines
580 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* 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/.
*/
// Compile and link this into test and utility executables that need it to link
#include <common/TraceEvent.hpp>
void TraceEvent::emitOneRecording(const std::string &recording)
{
// Dummy.
(void) recording;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */