Raspberry Cloud
ComputeOnClient.h
1 #ifndef _COMPUTEONCLIENT_H
2 #define _COMPUTEONCLIENT_H
3 
4 #include <string>
5 #include "HomeNetworkBehaviour.h"
6 #include "fileModel/FileDescriptor.h"
7 #include "CloudFileSystem.h"
8 using namespace std;
9 
16 private:
17  CloudFileSystem &cloudFileSystem;
18 public:
23  ComputeOnClient(CloudFileSystem &cloudFileSystem) :
24  cloudFileSystem(cloudFileSystem) {}
25 
31  bool addFile(string localFileID, string destinationFileID);
32 
38  string getFile(FileDescriptor fileDescriptor);
39 };
40 
41 #endif //_COMPUTEONCLIENT_H
Definition: FileDescriptor.h:17
Definition: ComputeOnClient.h:15
Definition: HomeNetworkBehaviour.h:12
Definition: CloudFileSystem.h:28
ComputeOnClient(CloudFileSystem &cloudFileSystem)
Definition: ComputeOnClient.h:23