2007-05-14 12:59:44 +02:00
|
|
|
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2007 INRIA
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
|
* published by the Free Software Foundation;
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*
|
|
|
|
|
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
|
|
|
|
|
*/
|
2007-06-04 17:54:56 +02:00
|
|
|
#include "socket-factory.h"
|
2007-05-14 12:59:44 +02:00
|
|
|
|
|
|
|
|
namespace ns3 {
|
|
|
|
|
|
2008-01-03 11:39:45 +01:00
|
|
|
NS_OBJECT_ENSURE_REGISTERED (SocketFactory);
|
|
|
|
|
|
2008-01-15 12:43:07 +01:00
|
|
|
TypeId SocketFactory::GetTypeId (void)
|
2008-01-02 10:33:39 +01:00
|
|
|
{
|
2008-03-13 12:56:49 -07:00
|
|
|
static TypeId tid = TypeId ("ns3::SocketFactory")
|
2008-01-03 08:34:31 +01:00
|
|
|
.SetParent<Object> ();
|
2008-01-15 12:44:09 +01:00
|
|
|
return tid;
|
2008-01-02 10:33:39 +01:00
|
|
|
}
|
2007-05-14 12:59:44 +02:00
|
|
|
|
2007-06-04 17:57:01 +02:00
|
|
|
SocketFactory::SocketFactory ()
|
2008-01-02 09:09:24 +01:00
|
|
|
{}
|
2007-05-14 12:59:44 +02:00
|
|
|
|
|
|
|
|
} // namespace ns3
|