summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/SameName/ccc/item.cpp
blob: ab8a2817bbc2e7c8092f39348b3ef052733de47f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "item.hpp"
// Include ui_view.h in source and header
#include <ccc/ui_view.h>

namespace ccc {

class MocLocal : public QObject
{
  Q_OBJECT;

public:
  MocLocal() = default;
  ~MocLocal() = default;
};

void Item::go()
{
  Ui_ViewCCC ui;
  MocLocal obj;
}
}

// Include own moc files
#include "ccc/item.moc"
#include "moc_item.cpp"