Subversion Repositories programming

Rev

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

Rev Author Line No. Line
344 ira 1
#ifndef DISPATCH_DATA_H
2
#define DISPATCH_DATA_H
3
 
348 ira 4
const int DISPATCH_DATA_STOP_AT_FLOOR     = 1;
5
const int DISPATCH_DATA_UPDATE_LABEL      = 2;
344 ira 6
 
7
#include "elevator.h"
8
 
9
class Elevator;
10
 
11
typedef struct
12
{
13
    int type;
14
    int iarg;
15
    float farg;
16
    Elevator *elev;
346 ira 17
    int direc;
344 ira 18
}
19
Dispatch_Data;
20
 
21
#endif
22