Files
unison/scratch/nested-subdir/lib/scratch-nested-subdir-library-header.h

22 lines
432 B
C
Raw Permalink Normal View History

/*
2024-06-17 16:17:10 +02:00
* 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.
*
2024-11-08 18:05:46 +00:00
* @return The message from the subdir
*/
std::string ScratchNestedSubdirGetMessage();
} // namespace ns3