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
- Committer:
- AndersonIctus
- Date:
- 2019-07-13
- Revision:
- 7:cb5a0a555a53
- Parent:
- 3:c87e6b48834e
File content as of revision 7:cb5a0a555a53:
#ifndef SGAM_MDW_PROTOCOL_H #define SGAM_MDW_PROTOCOL_H class Protocol { public: Protocol() { }; ~Protocol(){ }; virtual int initialize() = 0; virtual int finalize() = 0; virtual const char* getName() = 0; }; #endif