2023-01-30 15:54:35 -03:00
|
|
|
/*
|
2024-06-17 16:17:10 +02:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
2023-01-30 15:54:35 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// 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
|
2023-01-30 15:54:35 -03:00
|
|
|
*/
|
|
|
|
|
std::string ScratchNestedSubdirGetMessage();
|
|
|
|
|
|
|
|
|
|
} // namespace ns3
|