Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
IntroScreen/IntroScreen.h@61:3714af9caab6, 2020-05-27 (annotated)
- 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?
User | Revision | Line number | New 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 |