Files
ns3-base/scratch/subdir/scratch-subdir-additional-header.cc
Sebastian Rust 1d4a6f5903 initial commit
2024-07-01 10:26:48 +02:00

31 lines
916 B
C++

/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// This file contains the implementation of the functions declared in the
// corresponding header file.
#include "scratch-subdir-additional-header.h"
namespace ns3
{
std::string
ScratchSubdirGetMessage()
{
return "Scratch Subdir";
}
} // namespace ns3