Raspberry Cloud
CloudFile.h
1 #ifndef _CLOUDFILE_H
2 #define _CLOUDFILE_H
3 
4 #include <string>
5 using namespace std;
6 
12 class CloudFile {
13 protected:
14  string cloudID;
15  string cloudFileID;
16 
17 public:
23  CloudFile(string _cloudID, string _cloudFileID);
24 
25  CloudFile(){}
26 
31  string getCloudId();
32 
37  string getCloudFileID();
38 
43  void setCloudID(string _cloudID);
44 
49  void setCloudFileID(string _cloudFileID);
50 
51 };
52 
53 #endif //_CLOUDFILE_H
Definition: CloudFile.h:12