Files
unison/scratch/nested-subdir/lib/scratch-nested-subdir-library-header.h
2024-09-06 19:32:31 +00:00

22 lines
432 B
C++

/*
* SPDX-License-Identifier: GPL-2.0-only
*/
// This header does not provide much functionality but is meant to demonstrate how,
// in a scratch subdirectory, one can create new programs that are implemented
// in multiple files and headers.
#include <string>
namespace ns3
{
/**
* Get a message from the subdir.
*
* \return The message from the subdir
*/
std::string ScratchNestedSubdirGetMessage();
} // namespace ns3