Raspberry Cloud
HomeNetworkCommunications.h
1 
6 #ifndef _HOMENETWORKCOMMUNICATIONS_H
7 #define _HOMENETWORKCOMMUNICATIONS_H
8 
9 #include <string>
10 #include "ConcreteEncryption.h"
11 using namespace std;
17 private:
18  ConcreteEncryption encryption;
19 public:
24 
29  bool addFileRemote(string fileID);
30 
35  string getFileRemote(string fileID);
36 
40  void refresh();
41 private:
42  bool piAvaliable;
43 };
44 
45 #endif //_HOMENETWORKCOMMUNICATIONS_H
Definition: ConcreteEncryption.h:13
Definition: HomeNetworkCommunications.h:16