Patrick Venture | 33bf169 | 2018-11-06 20:19:17 -0800 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | namespace blobs | ||||
4 | { | ||||
5 | |||||
6 | /** | ||||
7 | * Each data transport mechanism must implement the DataInterface. | ||||
8 | */ | ||||
9 | class DataInterface | ||||
10 | { | ||||
11 | public: | ||||
12 | virtual ~DataInterface() = default; | ||||
13 | }; | ||||
14 | |||||
15 | } // namespace blobs |