1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef CONSTANTS_H
5#define CONSTANTS_H
6
7namespace Constants {
8
9const char CMD_RECORD[] ="record";
10const char CMD_RECORD2[] ="r";
11
12const char CMD_OUTPUT[] = "output";
13const char CMD_OUTPUT2[] = "o";
14
15const char CMD_FLUSH[] = "flush";
16const char CMD_FLUSH2[] = "f";
17
18const char CMD_CLEAR[] = "clear";
19const char CMD_CLEAR2[] = "c";
20
21const char CMD_QUIT[] ="quit";
22const char CMD_QUIT2[] = "q";
23
24const char CMD_YES[] = "yes";
25const char CMD_YES2[] = "y";
26
27const char CMD_NO[] = "no";
28const char CMD_NO2[] = "n";
29
30} // Constants
31
32#endif // CONSTANTS_H
33

source code of qtdeclarative/tools/qmlprofiler/constants.h