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