Switch to unified view

a/src/policies/DIF/RMT/Scheduler/RMTSchedulingBase.h b/src/policies/DIF/RMT/Scheduler/RMTSchedulingBase.h
...
...
62
    /**
62
    /**
63
     * Handler for OMNeT++ module messages (probably not of much use here).
63
     * Handler for OMNeT++ module messages (probably not of much use here).
64
     */
64
     */
65
    void handleMessage(cMessage *msg);
65
    void handleMessage(cMessage *msg);
66
66
67
    /**
68
     * Counts of PDUs waiting in output queues.
69
     */
70
    std::map<RMTPort*, unsigned int> waitingOnOutput;
71
72
    /**
73
     * Counts of PDUs waiting in input queues.
74
     */
75
    std::map<RMTPort*, unsigned int> waitingOnInput;
76
77
    // temporary
67
    // temporary
78
    std::map<RMTPort*, bool> inputBusy;
68
    std::map<RMTPort*, bool> inputBusy;
79
69
80
  private:
70
  private:
81
71