summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/Parallel/bbb/aaa/item.hpp
blob: be07ca84c3214fb4610d72baee1acdcfdcaa4bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BBB_AAA_ITEM_HPP
#define BBB_AAA_ITEM_HPP

#include <QObject>

namespace bbb {
namespace aaa {

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

#endif