#ifndef Second_HPP
#define Second_HPP

#include <QObject>

class Second : public QObject
{
  Q_OBJECT
public:
  Second();
  ~Second();
};

#endif
