remove deprecated API

This commit is contained in:
Tom Henderson
2009-11-21 16:33:39 -08:00
parent 9a34a94cf5
commit 9c31313d9e
4 changed files with 0 additions and 66 deletions

View File

@@ -109,16 +109,6 @@ def register_methods(root_module):
return
def register_Ns3GlobalRouteManager_methods(root_module, cls):
## global-route-manager.h: static void ns3::GlobalRouteManager::PopulateRoutingTables() [member function]
cls.add_method('PopulateRoutingTables',
'void',
[],
is_static=True, deprecated=True)
## global-route-manager.h: static void ns3::GlobalRouteManager::RecomputeRoutingTables() [member function]
cls.add_method('RecomputeRoutingTables',
'void',
[],
is_static=True, deprecated=True)
## global-route-manager.h: static uint32_t ns3::GlobalRouteManager::AllocateRouterId() [member function]
cls.add_method('AllocateRouterId',
'uint32_t',

View File

@@ -109,16 +109,6 @@ def register_methods(root_module):
return
def register_Ns3GlobalRouteManager_methods(root_module, cls):
## global-route-manager.h: static void ns3::GlobalRouteManager::PopulateRoutingTables() [member function]
cls.add_method('PopulateRoutingTables',
'void',
[],
is_static=True, deprecated=True)
## global-route-manager.h: static void ns3::GlobalRouteManager::RecomputeRoutingTables() [member function]
cls.add_method('RecomputeRoutingTables',
'void',
[],
is_static=True, deprecated=True)
## global-route-manager.h: static uint32_t ns3::GlobalRouteManager::AllocateRouterId() [member function]
cls.add_method('AllocateRouterId',
'uint32_t',

View File

@@ -32,21 +32,6 @@ namespace ns3 {
//
// ---------------------------------------------------------------------------
void
GlobalRouteManager::PopulateRoutingTables (void)
{
BuildGlobalRoutingDatabase ();
InitializeRoutes ();
}
void
GlobalRouteManager::RecomputeRoutingTables ()
{
DeleteGlobalRoutes ();
BuildGlobalRoutingDatabase ();
InitializeRoutes ();
}
void
GlobalRouteManager::DeleteGlobalRoutes ()
{

View File

@@ -39,37 +39,6 @@ namespace ns3 {
*/
class GlobalRouteManager
{
public:
/**
* @brief Build a routing database and initialize the routing tables of
* the nodes in the simulation. Makes all nodes in the simulation into
* routers.
*
* All this function does is call the functions
* BuildGlobalRoutingDatabase () and InitializeRoutes ().
*
* @see BuildGlobalRoutingDatabase ();
* @see InitializeRoutes ();
*/
static void PopulateRoutingTables () NS_DEPRECATED;
/**
*@brief Remove all routes that were previously installed in a prior call
* to either PopulateRoutingTables() or RecomputeRoutingTables(), and
* add a new set of routes.
*
* This method does not change the set of nodes
* over which GlobalRouting is being used, but it will dynamically update
* its representation of the global topology before recomputing routes.
* Users must first call PopulateRoutingTables() and then may subsequently
* call RecomputeRoutingTables() at any later time in the simulation.
*
* @see DeleteGlobalRoutes ();
* @see BuildGlobalRoutingDatabase ();
* @see InitializeRoutes ();
*/
static void RecomputeRoutingTables () NS_DEPRECATED;
public:
/**
* @brief Allocate a 32-bit router ID from monotonically increasing counter.