src/core/bindings/scan-header.h
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Fri, 15 Apr 2011 13:23:48 +0200
changeset 7049 85bd74b8d00c
parent 6893 5dccd86f90cf
child 7169 358f71a624d8
permissions -rw-r--r--
make scanner work

// -*- 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;
    }
    
}