summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/MocInclude/Relaxed/relaxed.cpp
blob: 5a511b673e4bf0822fcdc63739c0747c6fbe5586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// AUTOMOC relaxed mode objects
#include "RObjA.hpp"
#include "RObjB.hpp"
#include "RObjC.hpp"

// Forward declaration
bool commonRelaxed();

int main(int argv, char** args)
{
  // Common tests
  if (!commonRelaxed()) {
    return -1;
  }

  // Relaxed tests
  RObjA rObjA;
  RObjB rObjB;
  RObjC rObjC;
  return 0;
}