inz

hello.cpp (raw)

  1. #include <QObject>
  2. #include "hello.h"
  3. #include "hello_adaptor.h"
  4.  
  5. Hello::Hello(QObject *parent) :
  6. QObject(parent)
  7. {
  8. }
  9.  
  10. Hello::~Hello()
  11. {
  12. }
  13.  
  14. QString Hello::hello(const QString &name)
  15. {
  16. return "Hello, " + name;
  17. }
  18.