C++  1.4.6
CloudBackend Software Development Kit - SDK API for C++
Stream.h
1 /*
2  Copyright © CloudBackend AB 2020 - 2022.
3 */
4 
5 #ifndef INCLUDE_CBE_STREAM_H_
6 #define INCLUDE_CBE_STREAM_H_
7 
8 #include <string>
9 #include "CBE/Types.h"
10 
11 namespace CBE {
12 
13 class Stream {
14  public:
15  //Future get functions and other functionality will be added here.
16  uint64_t _streamId;
17  size_t _length;
18  protected:
19  Stream() : _streamId{0}, _length{0} {}
20  Stream(uint64_t streamId, size_t length);
21 
22 };
23 } // namespace CBE
24 // namespace CBE
25 
26 #endif // INCLUDE_CBE_STREAM_H_
CBE::Stream
Definition: Stream.h:13