bug 506 -- remove name version of SetPositionAllocator

This commit is contained in:
Craig Dowell
2009-02-21 14:46:11 -08:00
parent 6945d47068
commit ffdb250c3e
2 changed files with 1 additions and 13 deletions

View File

@@ -46,12 +46,7 @@ MobilityHelper::SetPositionAllocator (Ptr<PositionAllocator> allocator)
{
m_position = allocator;
}
void
MobilityHelper::SetPositionAllocator (std::string allocatorName)
{
Ptr<PositionAllocator> allocator = Names::Find<PositionAllocator> (allocatorName);
m_position = allocator;
}
void
MobilityHelper::SetPositionAllocator (std::string type,
std::string n1, const AttributeValue &v1,

View File

@@ -50,13 +50,6 @@ public:
* \param allocator allocate initial node positions
*/
void SetPositionAllocator (Ptr<PositionAllocator> allocator);
/**
* Set the position allocator which will be used to allocate the initial
* position of every node initialized during MobilityModel::Install.
*
* \param allocator allocate initial node positions
*/
void SetPositionAllocator (std::string allocatorName);
/**
* \param type the type of mobility model to use.