Advertisement
Jgug

S4.L1.Proc.header

Feb 20th, 2013
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #ifndef PROC_H
  2. #define PROC_H
  3.  
  4. #include <QObject>
  5.  
  6. class Proc : public QObject
  7. {
  8.     Q_OBJECT
  9. private:
  10.     double var_1;
  11.     double res_1, res_2;
  12. public:
  13.     Proc();
  14. public slots:
  15.     void Run_1();
  16.     void Run_2();
  17.     void Print_1();
  18.     void Print_2();
  19.     void SetVal(QString);
  20. signals:
  21.     void ResOut_1(QString);
  22.     void ResOut_2(QString);
  23. };
  24.  
  25. #endif // PROC_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement