2013-06-11 15:13:33 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2013-06-20 12:34:02 +02:00
|
|
|
** Copyright (C) 2013 Digia Plc
|
|
|
|
|
** All rights reserved.
|
|
|
|
|
** For any questions to Digia, please use contact form at http://qt.digia.com <http://qt.digia.com/>
|
2013-06-11 15:13:33 +02:00
|
|
|
**
|
2013-06-20 12:34:02 +02:00
|
|
|
** This file is part of the Qt Enterprise Qt Quick Profiler Add-on.
|
2013-06-11 15:13:33 +02:00
|
|
|
**
|
2013-06-20 12:34:02 +02:00
|
|
|
** Licensees holding valid Qt Enterprise licenses may use this file in
|
|
|
|
|
** accordance with the Qt Enterprise License Agreement provided with the
|
2013-06-11 15:13:33 +02:00
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2013-06-20 12:34:02 +02:00
|
|
|
** a written agreement between you and Digia.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please use
|
|
|
|
|
** contact form at http://qt.digia.com <http://qt.digia.com/>
|
2013-06-11 15:13:33 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2013-06-24 14:17:43 +02:00
|
|
|
#ifndef QMLPROFILEREXTENSIONCONSTANTS_H
|
|
|
|
|
#define QMLPROFILEREXTENSIONCONSTANTS_H
|
2013-06-11 15:13:33 +02:00
|
|
|
|
2013-06-24 14:17:43 +02:00
|
|
|
namespace QmlProfilerExtension {
|
2013-06-11 15:13:33 +02:00
|
|
|
namespace Constants {
|
|
|
|
|
|
2013-06-24 14:17:43 +02:00
|
|
|
const char ACTION_ID[] = "QmlProfilerExtension.Action";
|
|
|
|
|
const char MENU_ID[] = "QmlProfilerExtension.Menu";
|
2013-06-11 15:13:33 +02:00
|
|
|
|
2013-06-24 14:17:43 +02:00
|
|
|
} // namespace QmlProfilerExtension
|
2013-06-11 15:13:33 +02:00
|
|
|
} // namespace Constants
|
|
|
|
|
|
2013-06-24 14:17:43 +02:00
|
|
|
#endif // QMLPROFILEREXTENSIONCONSTANTS_H
|
2013-06-11 15:13:33 +02:00
|
|
|
|