OmittedTrafficConditioner.ned

NED File src/inet/queueing/shaper/OmittedTrafficConditioner.ned

Name Type Description
OmittedTrafficConditioner compound module

Implements the given module interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialization.

Source code

//
// Copyright (C) 2020 OpenSim Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//


package inet.queueing.shaper;

import inet.common.Module;
import inet.queueing.contract.ITrafficConditioner;

//
// Implements the given module interface and can be used as an omitted
// optional module that removes itself from the module hierarchy during initialization.
//
module OmittedTrafficConditioner extends Module like ITrafficConditioner
{
    parameters:
        @class(::inet::OmittedModule);
        @display("i=block/downarrow,black,50");
    gates:
        input in;
        output out;
    connections:
        in --> out;
}