Dependencies: mbed 4DGL-uLCD-SE SDFileSystem PinDetect
Letter.h@0:72aeef60e1fc, 2019-01-03 (annotated)
- Committer:
- sralph3
- Date:
- Thu Jan 03 22:40:26 2019 +0000
- Revision:
- 0:72aeef60e1fc
Pt. 4 | Encryption encrypt program
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
sralph3 | 0:72aeef60e1fc | 1 | #ifndef LETTER_H |
sralph3 | 0:72aeef60e1fc | 2 | #define LETTER_H |
sralph3 | 0:72aeef60e1fc | 3 | class Letter{ |
sralph3 | 0:72aeef60e1fc | 4 | public: |
sralph3 | 0:72aeef60e1fc | 5 | Letter(); |
sralph3 | 0:72aeef60e1fc | 6 | void inc(); |
sralph3 | 0:72aeef60e1fc | 7 | void dec(); |
sralph3 | 0:72aeef60e1fc | 8 | char getChar(); |
sralph3 | 0:72aeef60e1fc | 9 | private: |
sralph3 | 0:72aeef60e1fc | 10 | char current; |
sralph3 | 0:72aeef60e1fc | 11 | }; |
sralph3 | 0:72aeef60e1fc | 12 | #endif |