biblioteca que serve como midleware para as diversas placas que podem implementar esse padrão !

Dependents:   sgam_mdw_test

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?

UserRevisionLine numberNew 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