Skip to content

Commit d1c0cdc

Browse files
committed
Adapt to changes in NS-3
For more information see: https://gitlab.com/nsnam/ns-3-dev/-/merge_requests/2287 Signed-off-by: Anders Martinsson <[email protected]>
1 parent 9ab8b4b commit d1c0cdc

12 files changed

+0
-36
lines changed

helper/dce-manager-helper.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ DceManagerHelper::GetTypeId (void)
3939
;
4040
return tid;
4141
}
42-
TypeId
43-
DceManagerHelper::GetInstanceTypeId (void) const
44-
{
45-
return DceManagerHelper::GetTypeId ();
46-
}
4742

4843
DceManagerHelper::DceManagerHelper ()
4944
{

helper/dce-manager-helper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ class DceManagerHelper : public Object
8383
{
8484
public:
8585
static TypeId GetTypeId (void);
86-
virtual TypeId GetInstanceTypeId (void) const;
8786

8887
/**
8988
* Construct a DceManagerHelper

model/dce-node-context.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ DceNodeContext::GetTypeId (void)
4646

4747
return tid;
4848
}
49-
TypeId
50-
DceNodeContext::GetInstanceTypeId (void) const
51-
{
52-
return DceNodeContext::GetTypeId ();
53-
}
5449
DceNodeContext::DceNodeContext ()
5550
{
5651
m_randomCtx = CreateObject<NormalRandomVariable> ();

model/dce-node-context.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ class DceNodeContext : public Object
4343
{
4444
public:
4545
static TypeId GetTypeId (void);
46-
virtual TypeId GetInstanceTypeId (void) const;
4746

4847
DceNodeContext ();
4948
virtual ~DceNodeContext ();

model/local-datagram-socket-fd.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ LocalDatagramSocketFd::GetTypeId (void)
4444

4545
return tid;
4646
}
47-
TypeId
48-
LocalDatagramSocketFd::GetInstanceTypeId (void) const
49-
{
50-
return LocalDatagramSocketFd::GetTypeId ();
51-
}
5247
LocalDatagramSocketFd::LocalDatagramSocketFd (Ptr<LocalSocketFdFactory> f)
5348
: m_state (CREATED),
5449
m_peer (0)

model/local-datagram-socket-fd.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ class LocalDatagramSocketFd : public LocalSocketFd
4848
{
4949
public:
5050
static TypeId GetTypeId (void);
51-
virtual TypeId GetInstanceTypeId (void) const;
5251

5352
LocalDatagramSocketFd (Ptr<LocalSocketFdFactory> f);
5453
virtual ~LocalDatagramSocketFd ();

model/local-socket-fd-factory.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ LocalSocketFdFactory::GetTypeId (void)
4040

4141
return tid;
4242
}
43-
TypeId
44-
LocalSocketFdFactory::GetInstanceTypeId (void) const
45-
{
46-
return LocalSocketFdFactory::GetTypeId ();
47-
}
4843
LocalSocketFdFactory::LocalSocketFdFactory ()
4944
: m_totalBuffersSize (0)
5045
{

model/local-socket-fd-factory.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class LocalSocketFdFactory : public SocketFdFactory
3636
{
3737
public:
3838
static TypeId GetTypeId (void);
39-
virtual TypeId GetInstanceTypeId (void) const;
4039

4140
LocalSocketFdFactory ();
4241
virtual void DoDispose ();

model/local-socket-fd.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ LocalSocketFd::GetTypeId (void)
4141

4242
return tid;
4343
}
44-
TypeId
45-
LocalSocketFd::GetInstanceTypeId (void) const
46-
{
47-
return LocalSocketFd::GetTypeId ();
48-
}
4944
LocalSocketFd::LocalSocketFd () : m_readBuffer (0),
5045
m_readBufferSize (0),
5146
m_sendTimeout (0),

model/local-socket-fd.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ class LocalSocketFd : public UnixFd
4747
{
4848
public:
4949
static TypeId GetTypeId (void);
50-
virtual TypeId GetInstanceTypeId (void) const;
5150

5251
LocalSocketFd ();
5352
virtual ~LocalSocketFd ();

0 commit comments

Comments
 (0)