From 076e81db95e6c73d53dba81d9f3490139e41587b Mon Sep 17 00:00:00 2001 From: Richard Whitehouse Date: Tue, 17 May 2011 20:40:30 +0100 Subject: [PATCH] Add base class for Topology helpers --- src/topology/helper/helper.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/topology/helper/helper.h diff --git a/src/topology/helper/helper.h b/src/topology/helper/helper.h new file mode 100644 index 0000000..41e067c --- /dev/null +++ b/src/topology/helper/helper.h @@ -0,0 +1,35 @@ +/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) 2008,2009 IITP RAS + * + * 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 + * + * Author: Richard Whitehouse + */ + +#ifndef TOPOLOGY_H +#define TOPOLOGY_H + +#include "ns3/topology.h" + +namespace ns3 { + +class TopologyHelper { + +}; + +} + +#endif + -- 2.34.1