![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /****************************************************************************** 00002 * WNS (Wireless Network Simulator) * 00003 * __________________________________________________________________________ * 00004 * * 00005 * Copyright (C) 2004-2008 * 00006 * Chair of Communication Networks (ComNets) * 00007 * Kopernikusstr. 1, D-52074 Aachen, Germany * 00008 * phone: ++49-241-80-27910 (phone), fax: ++49-241-80-22242 * 00009 * email: wns@comnets.rwth-aachen.de * 00010 * www: http://wns.comnets.rwth-aachen.de * 00011 ******************************************************************************/ 00012 00013 #ifndef WNS_LDK_SINGLEPORT_HPP 00014 #define WNS_LDK_SINGLEPORT_HPP 00015 00016 #include <WNS/ldk/IPortID.hpp> 00017 00018 #include <string> 00019 00020 namespace wns { namespace ldk { 00021 00022 class SinglePort 00023 : public virtual IPortID 00024 { 00025 public: 00026 static const std::string name; 00027 }; 00028 00029 // const std::string SinglePort::name = "SinglePort"; 00030 00031 00032 } // ldk 00033 } // wns 00034 00035 #endif // NOT defined WNS_LDK_SINGLEPORT_HPP
1.5.5