Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef PROC_H
- #define PROC_H
- #include <QObject>
- class Proc : public QObject
- {
- Q_OBJECT
- private:
- double var_1;
- double res_1, res_2;
- public:
- Proc();
- public slots:
- void Run_1();
- void Run_2();
- void Print_1();
- void Print_2();
- void SetVal(QString);
- signals:
- void ResOut_1(QString);
- void ResOut_2(QString);
- };
- #endif // PROC_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement