src/helper/tap-bridge-helper.h
changeset 4289 2f5b0ec50102
parent 4194 819e09dac21a
--- a/src/helper/tap-bridge-helper.h	Tue Mar 17 16:00:46 2009 -0700
+++ b/src/helper/tap-bridge-helper.h	Sat Mar 21 15:40:49 2009 -0700
@@ -21,6 +21,7 @@
 
 #include "net-device-container.h"
 #include "ns3/object-factory.h"
+#include "ns3/tap-bridge.h"
 #include <string>
 
 namespace ns3 {
@@ -31,12 +32,14 @@
 class TapBridgeHelper
 {
 public:
+  TapBridgeHelper ();
   TapBridgeHelper (Ipv4Address gateway);
   void SetAttribute (std::string n1, const AttributeValue &v1);
   Ptr<NetDevice> Install (Ptr<Node> node, Ptr<NetDevice> nd);
   Ptr<NetDevice> Install (std::string nodeName, Ptr<NetDevice> nd);
   Ptr<NetDevice> Install (Ptr<Node> node, std::string ndName);
   Ptr<NetDevice> Install (std::string nodeName, std::string ndName);
+  Ptr<NetDevice> Install (Ptr<Node> node, Ptr<NetDevice> nd, const AttributeValue &v1);
 private:
   ObjectFactory m_deviceFactory;
 };