Some missing virtual qualifiers

pull/7822/head
Donatien Garnier 2018-08-17 19:36:43 +01:00
parent 1dfeafd11a
commit d63a36c586
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ namespace nfc {
* @param[in] buffer a buffer containing the message to parse
* @param[in] size the buffer's size
*/
void parse_ndef_message(const uint8_t* buffer, size_t size) { }
virtual void parse_ndef_message(const uint8_t* buffer, size_t size) { }
/**
* Build a NDEF message.
@ -64,7 +64,7 @@ namespace nfc {
* @param[in] capacity the buffer's capacity
* @return the number of bytes actually used
*/
size_t build_ndef_message(uint8_t* buffer, size_t capacity) { return 0; }
virtual size_t build_ndef_message(uint8_t* buffer, size_t capacity) { return 0; }
};
/**