BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
FileLoader.h
1 #pragma once
2 
3 namespace Poco {
4 
5 class File;
6 
7 }
8 
9 namespace BeeeOn {
10 
11 class FileLoader {
12 public:
13  virtual ~FileLoader();
14 
15  virtual void load(const Poco::File &file) = 0;
16  virtual void finished() = 0;
17 };
18 
19 }
Definition: FileLoader.h:11