#ifndef OBJECT_HPP
#define OBJECT_HPP

#include <QObject>

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

#endif
