blob: afc7f33375ea10c02eb7915100e429d088cfe611 [file] [log] [blame]
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev98256102011-08-14 01:00:02 -07002/*
3 * Copyright (c) 2009 University of Washington
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#include "ns3/assert.h"
20
21#include "ccnx-route.h"
22#include "ccnx-forwarding-protocol.h"
23
24namespace ns3 {
25
26NS_OBJECT_ENSURE_REGISTERED (CcnxForwardingProtocol);
27
28TypeId CcnxForwardingProtocol::GetTypeId (void)
29{
30 static TypeId tid = TypeId ("ns3::CcnxForwardingProtocol")
31 .SetParent<Object> ()
32 ;
33 return tid;
34}
35
36void
37CcnxForwardingProtocol::SetCcnx (Ptr<Ccnx> ccnx)
38{
39 m_ccnx = ccnx;
40}
41
42} //namespace ns3