Subversion Repositories programming

Rev

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

Rev 332 Rev 334
Line 28... Line 28...
28
 
28
 
29
    private:
29
    private:
30
        bool floor_already_requested (int on_floor);
30
        bool floor_already_requested (int on_floor);
31
        int find_closest_elevator (int to_floor, int in_direction);
31
        int find_closest_elevator (int to_floor, int in_direction);
32
 
32
 
33
        std::vector<Elevator> elevators;
33
        std::vector<Elevator*> elevator;
34
        int num_floors;
34
        int num_floors;
35
        int num_elevators;
35
        int num_elevators;
36
};
36
};
37
 
37
 
38
#endif // CONTROLLER_H
38
#endif // CONTROLLER_H