2012-02-13 18:21:06 +00:00
|
|
|
/*
|
2024-06-17 16:17:10 +02:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
2012-02-13 18:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
2022-01-13 16:19:26 +00: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.
|
2012-02-13 18:21:06 +00:00
|
|
|
|
2022-01-13 16:19:26 +00:00
|
|
|
#include <string>
|
2012-02-13 18:21:06 +00:00
|
|
|
|
2022-10-07 20:08:35 +00:00
|
|
|
namespace ns3
|
|
|
|
|
{
|
2014-09-26 15:51:00 -07:00
|
|
|
|
2022-01-13 16:19:26 +00:00
|
|
|
/**
|
|
|
|
|
* Get a message from the subdir.
|
|
|
|
|
*
|
2024-11-08 18:05:46 +00:00
|
|
|
* @return The message from the subdir
|
2022-01-13 16:19:26 +00:00
|
|
|
*/
|
2022-10-07 20:08:35 +00:00
|
|
|
std::string ScratchSubdirGetMessage();
|
2022-01-13 16:19:26 +00:00
|
|
|
|
|
|
|
|
} // namespace ns3
|