#ifndef QITEMC_HPP
#define QITEMC_HPP

#include <QObject>

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

#endif