~ubuntu-sdk-team/qtcreator-plugin-remotelinux/trunk

« back to all changes in this revision

Viewing changes to src/qnx/blackberryruntimeconfiguration.h

  • Committer: CI bot
  • Author(s): Benjamin Zeller
  • Date: 2014-06-16 10:28:43 UTC
  • mfrom: (4.2.4 remotelinux)
  • Revision ID: ps-jenkins@lists.canonical.com-20140616102843-8juvmjvzwlzsboyw
Migrating to Qt5.3 and QtC 3.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
**
 
3
** Copyright (C) 2014 BlackBerry Limited. All rights reserved.
 
4
**
 
5
** Contact: BlackBerry (qt@blackberry.com)
 
6
** Contact: KDAB (info@kdab.com)
 
7
**
 
8
** This file is part of Qt Creator.
 
9
**
 
10
** Commercial License Usage
 
11
** Licensees holding valid commercial Qt licenses may use this file in
 
12
** accordance with the commercial license agreement provided with the
 
13
** Software or, alternatively, in accordance with the terms contained in
 
14
** a written agreement between you and Digia.  For licensing terms and
 
15
** conditions see http://qt.digia.com/licensing.  For further information
 
16
** use the contact form at http://qt.digia.com/contact-us.
 
17
**
 
18
** GNU Lesser General Public License Usage
 
19
** Alternatively, this file may be used under the terms of the GNU Lesser
 
20
** General Public License version 2.1 as published by the Free Software
 
21
** Foundation and appearing in the file LICENSE.LGPL included in the
 
22
** packaging of this file.  Please review the following information to
 
23
** ensure the GNU Lesser General Public License version 2.1 requirements
 
24
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
25
**
 
26
** In addition, as a special exception, Digia gives you certain additional
 
27
** rights.  These rights are described in the Digia Qt LGPL Exception
 
28
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
29
**
 
30
****************************************************************************/
 
31
 
 
32
#ifndef BLACKBERRYRUNTIMECONFIGURATION_H
 
33
#define BLACKBERRYRUNTIMECONFIGURATION_H
 
34
 
 
35
#include "blackberryversionnumber.h"
 
36
 
 
37
#include <QVariantMap>
 
38
 
 
39
namespace Qnx {
 
40
namespace Internal {
 
41
class BlackBerryRuntimeConfiguration
 
42
{
 
43
public:
 
44
    BlackBerryRuntimeConfiguration(const QString &path,
 
45
                                   const BlackBerryVersionNumber &version = BlackBerryVersionNumber());
 
46
    BlackBerryRuntimeConfiguration(const QVariantMap &data);
 
47
 
 
48
    QString path() const;
 
49
    QString displayName() const;
 
50
    BlackBerryVersionNumber version() const;
 
51
    QVariantMap toMap() const;
 
52
 
 
53
private:
 
54
    QString m_path;
 
55
    QString m_displayName;
 
56
    BlackBerryVersionNumber m_version;
 
57
};
 
58
 
 
59
}
 
60
}
 
61
 
 
62
#endif // BLACKBERRYRUNTIMECONFIGURATION_H