Files
unison/scratch/nested-subdir/lib/scratch-nested-subdir-library-source.cc

20 lines
326 B
C++
Raw Normal View History

/*
2024-06-17 16:17:10 +02:00
* SPDX-License-Identifier: GPL-2.0-only
*/
// This file contains the implementation of the functions declared in the
// corresponding header file.
#include "scratch-nested-subdir-library-header.h"
namespace ns3
{
std::string
ScratchNestedSubdirGetMessage()
{
return "Scratch Nested Subdir";
}
} // namespace ns3