22 lines
432 B
C++
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
|