Ieee80211Channel.msg

Msg File src/inet/physicallayer/ieee80211/mode/Ieee80211Channel.msg

Name Type Description
IIeee80211Band class (no description)
Ieee80211EnumeratedBand class (no description)
Ieee80211ArithmeticalBand class (no description)
Ieee80211Channel class (no description)

Source code

//
// Copyright (C) 2006 Andras Varga
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, see <http://www.gnu.org/licenses/>.
//

import inet.common.INETDefs;
import inet.common.Units;

cplusplus {{
#include "inet/physicallayer/ieee80211/mode/Ieee80211Band.h"
#include "inet/physicallayer/ieee80211/mode/Ieee80211Channel.h"
}}

namespace inet::physicallayer;

class IIeee80211Band
{
    @existingClass;
    @descriptor(readonly);
    string name;
    Hz centerFrequency[] @sizeGetter(getNumChannels);
}

class Ieee80211EnumeratedBand extends IIeee80211Band
{
    @existingClass;
    @descriptor(readonly);
}

class Ieee80211ArithmeticalBand extends IIeee80211Band
{
    @existingClass;
    @descriptor(readonly);
}

class Ieee80211Channel
{
    @existingClass;
    @descriptor(readonly);
    IIeee80211Band *band;
    int channelNumber;
}