#ifndef QITEMA_HPP
#define QITEMA_HPP

#include <QObject>

class QItemA : public QObject
{
  Q_OBJECT
  Q_SLOT
  void go();
};

#endif