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.
protocol/Protocol.h@7:cb5a0a555a53, 2019-07-13 (annotated)
- Committer:
- AndersonIctus
- Date:
- Sat Jul 13 11:17:03 2019 -0300
- Revision:
- 7:cb5a0a555a53
- Parent:
- 3:c87e6b48834e
- mudancas para write de conteudo !!
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| AndersonIctus | 1:3a7f743de36f | 1 | #ifndef SGAM_MDW_PROTOCOL_H |
| AndersonIctus | 1:3a7f743de36f | 2 | #define SGAM_MDW_PROTOCOL_H |
| AndersonIctus | 1:3a7f743de36f | 3 | |
| AndersonIctus | 1:3a7f743de36f | 4 | class Protocol { |
| AndersonIctus | 1:3a7f743de36f | 5 | public: |
| AndersonIctus | 1:3a7f743de36f | 6 | Protocol() { }; |
| AndersonIctus | 3:c87e6b48834e | 7 | ~Protocol(){ }; |
| AndersonIctus | 3:c87e6b48834e | 8 | |
| AndersonIctus | 3:c87e6b48834e | 9 | virtual int initialize() = 0; |
| AndersonIctus | 3:c87e6b48834e | 10 | virtual int finalize() = 0; |
| AndersonIctus | 3:c87e6b48834e | 11 | |
| AndersonIctus | 3:c87e6b48834e | 12 | virtual const char* getName() = 0; |
| AndersonIctus | 1:3a7f743de36f | 13 | }; |
| AndersonIctus | 1:3a7f743de36f | 14 | #endif |