ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_el19tb

Dependencies:   mbed

Committer:
el19tb
Date:
Wed May 27 01:54:46 2020 +0000
Revision:
61:3714af9caab6
Parent:
60:e1ac7fa5cf17
Final Submission. I have read and agreed with Statement of Academic Integrity.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
el19tb 50:9ffeb4a10c0a 1 #ifndef INTROSCREEN_H
el19tb 50:9ffeb4a10c0a 2 #define INTROSCREEN_H
el19tb 50:9ffeb4a10c0a 3
el19tb 60:e1ac7fa5cf17 4 /** IntroScreen Class
el19tb 60:e1ac7fa5cf17 5 * @brief used to keep track of the current position of the menu
el19tb 60:e1ac7fa5cf17 6 * @author Tarek Bessalah
el19tb 60:e1ac7fa5cf17 7 * @date May, 2020
el19tb 60:e1ac7fa5cf17 8 */
el19tb 50:9ffeb4a10c0a 9 class IntroScreen
el19tb 60:e1ac7fa5cf17 10 {
el19tb 50:9ffeb4a10c0a 11 public:
el19tb 60:e1ac7fa5cf17 12 /** Gets the value of selection
el19tb 60:e1ac7fa5cf17 13 * @return the current pointer selection number
el19tb 60:e1ac7fa5cf17 14 */
el19tb 60:e1ac7fa5cf17 15 int selection;
el19tb 50:9ffeb4a10c0a 16
el19tb 60:e1ac7fa5cf17 17 /** Gets the page of tutorial screen
el19tb 60:e1ac7fa5cf17 18 * @return the current pointer tutorial screen
el19tb 60:e1ac7fa5cf17 19 */
el19tb 50:9ffeb4a10c0a 20 int tutorial_screens;
el19tb 50:9ffeb4a10c0a 21 };
el19tb 50:9ffeb4a10c0a 22
el19tb 50:9ffeb4a10c0a 23 #endif