Subversion Repositories programming

Rev

Rev 346 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 346 Rev 348
Line 1... Line 1...
1
#ifndef DISPATCH_DATA_H
1
#ifndef DISPATCH_DATA_H
2
#define DISPATCH_DATA_H
2
#define DISPATCH_DATA_H
3
 
3
 
4
const int DISPATCH_DATA_ELEVATOR_OPEN     = 1;
-
 
5
const int DISPATCH_DATA_ELEVATOR_CLOSE    = 2;
-
 
6
const int DISPATCH_DATA_UNSET_UP_BUTTON   = 3;
-
 
7
const int DISPATCH_DATA_UNSET_DOWN_BUTTON = 4;
-
 
8
const int DISPATCH_DATA_SET_LABEL         = 5;
-
 
9
const int DISPATCH_DATA_STOP_AT_FLOOR     = 6;
4
const int DISPATCH_DATA_STOP_AT_FLOOR     = 1;
10
const int DISPATCH_DATA_UPDATE_LABEL      = 7;
5
const int DISPATCH_DATA_UPDATE_LABEL      = 2;
11
 
6
 
12
#include "elevator.h"
7
#include "elevator.h"
13
 
8
 
14
class Elevator;
9
class Elevator;
15
 
10