initial commit

This commit is contained in:
Sebastian Rust
2024-07-01 10:26:48 +02:00
commit 1d4a6f5903
8 changed files with 338 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*
* 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