aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/qtscxml/main.cpp
blob: c9a7d7741372288f6415b0a9b2bb627727a8fc0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef HAS_QTSCXML
#include <dummystatemachine.h>
#endif

#include <iostream>

int main()
{
#ifdef HAS_QTSCXML
    QbsTest::QbsStateMachine machine;
    std::cout << "state machine name: " << qPrintable(machine.name()) << std::endl;
#else
    std::cout << "QtScxml not present" << std::endl;
#endif
}