loadhelper.h 466 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Copyright (c) 2011 Nokia Corporation.
  3. */
  4. #ifndef LOADHELPER_H
  5. #define LOADHELPER_H
  6. #include <QObject>
  7. // Forward declarations
  8. class QmlApplicationViewer;
  9. class LoadHelper : public QObject
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit LoadHelper(QmlApplicationViewer *viewer, QObject *parent = 0);
  14. public slots:
  15. void loadMainQML();
  16. private: // Data
  17. QmlApplicationViewer *m_viewer; // Not owned
  18. };
  19. #endif // LOADHELPER_H