10Duke Enterprise C++ SDK
Loading...
Searching...
No Matches
MutableDataSpan.h
1#ifndef TENDUKE_UTL_MUTABLEDATASPAN_H
2#define TENDUKE_UTL_MUTABLEDATASPAN_H
3
4#include "./DataSpan.h"
5
6namespace tenduke { namespace utl {
7
13{
14public:
21 virtual unsigned char * data() = 0;
22};
23
24}}
25
26#endif //TENDUKE_UTL_MUTABLEDATASPAN_H
A span of binary data.
Definition DataSpan.h:16
Extends DataSpan with mutable access to the underlying data.
Definition MutableDataSpan.h:13
virtual unsigned char * data()=0
Returns a mutable view of the underlying data.
Utilities.
Definition Base64Decoder.h:10
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4