OmittedIeee8021dQosClassifier.ned

NED File src/inet/linklayer/common/OmittedIeee8021dQosClassifier.ned

Name Type Description
OmittedIeee8021dQosClassifier 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) 2021 OpenSim Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//


package inet.linklayer.common;

import inet.common.Module;

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