File indexing completed on 2024-05-19 04:48:24

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