Subversion Repositories programming

Rev

Rev 346 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef DISPATCH_DATA_H
#define DISPATCH_DATA_H

const int DISPATCH_DATA_STOP_AT_FLOOR     = 1;
const int DISPATCH_DATA_UPDATE_LABEL      = 2;

#include "elevator.h"

class Elevator;

typedef struct
{
    int type;
    int iarg;
    float farg;
    Elevator *elev;
    int direc;
}
Dispatch_Data;

#endif