applicationlauncher.cpp 418 B

12345678910111213141516
  1. #include "applicationlauncher.h"
  2. ApplicationLauncher::ApplicationLauncher(QQuickItem *parent):
  3. QQuickItem(parent)
  4. {
  5. // By default, QQuickItem does not draw anything. If you subclass
  6. // QQuickItem to create a visual item, you will need to uncomment the
  7. // following line and re-implement updatePaintNode()
  8. // setFlag(ItemHasContents, true);
  9. }
  10. ApplicationLauncher::~ApplicationLauncher()
  11. {
  12. }