inz

hello.h (raw)

  1. #ifndef HELLO_H
  2. #define HELLO_H
  3.  
  4. #include <QObject>
  5.  
  6. class Hello : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. Hello(QObject *parent = 0);
  11. virtual ~Hello();
  12.  
  13. public slots:
  14. QString hello(const QString &name);
  15. };
  16.  
  17. #endif // HELLO_H
  18.