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 file contains the implementation of the functions declared in the
|
|
|
|
|
// corresponding header file.
|
2012-02-13 18:21:06 +00:00
|
|
|
|
2022-01-13 16:19:26 +00:00
|
|
|
#include "scratch-subdir-additional-header.h"
|
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
|
|
|
std::string
|
2022-10-07 20:08:35 +00:00
|
|
|
ScratchSubdirGetMessage()
|
2012-02-13 18:21:06 +00:00
|
|
|
{
|
2022-10-07 20:08:35 +00:00
|
|
|
return "Scratch Subdir";
|
2012-02-13 18:21:06 +00:00
|
|
|
}
|
2022-01-13 16:19:26 +00:00
|
|
|
|
|
|
|
|
} // namespace ns3
|