src/core/bindings/scan-header.h
author Josh Pelkey <jpelkey@gatech.edu>
Fri, 13 May 2011 14:52:27 -0400
changeset 7169 358f71a624d8
parent 7049 85bd74b8d00c
child 7375 5ccbfab63589
permissions -rw-r--r--
core coding style changes

// -*- c++ -*-

#include "ns3/core-module.h"

using namespace ns3;

namespace 
{

static inline Ptr<Object>
__dummy_function_to_force_template_instantiation (Ptr<Object> obj, TypeId typeId)
{
  return obj->GetObject<Object> (typeId);
}


static inline void
__dummy_function_to_force_template_instantiation_v2 ()
{
  Time t1, t2, t3;
  t1 = t2 + t3;
  t1 = t2 - t3;
  t1 < t2;
  t1 <= t2;
  t1 == t2;
  t1 != t2;
  t1 >= t2;
  t1 > t2;
}

}