File indexing completed on 2024-11-17 04:21:18

0001 #ifndef CLOUD_H
0002 #define CLOUD_H
0003 
0004 #include <QObject>
0005 
0006 class Cloud : public QObject
0007 {
0008     Q_OBJECT
0009 
0010 public:   
0011 
0012     explicit Cloud(QObject *parent = nullptr);
0013 
0014 };
0015 
0016 #endif // CLOUD_H