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

« back to all changes in this revision

Viewing changes to src/remotelinux/remotelinuxrunconfiguration.h

[ Benjamin Zeller ]
* Added debian packaging
* Added AbstractRemoteLinuxRunConfiguration to allow plugins to 
  ship a custom RemoteRunConfiguration
* Backporting Fix for QTCREATORBUG-11553 (Enable QML debugging also for generic remote linux)

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#define REMOTELINUXRUNCONFIGURATION_H
32
32
 
33
33
#include "remotelinux_export.h"
 
34
#include "abstractremotelinuxrunconfiguration.h"
34
35
 
35
36
#include <projectexplorer/runconfiguration.h>
36
37
 
50
51
class RemoteLinuxRunConfigurationFactory;
51
52
} // namespace Internal
52
53
 
53
 
class REMOTELINUX_EXPORT RemoteLinuxRunConfiguration : public ProjectExplorer::RunConfiguration
 
54
class REMOTELINUX_EXPORT RemoteLinuxRunConfiguration : public AbstractRemoteLinuxRunConfiguration
54
55
{
55
56
    Q_OBJECT
56
57
    Q_DISABLE_COPY(RemoteLinuxRunConfiguration)
89
90
 
90
91
    static const char *IdPrefix;
91
92
 
92
 
signals:
93
 
    void deploySpecsChanged();
94
 
    void targetInformationChanged() const;
95
 
 
96
93
protected:
97
94
    RemoteLinuxRunConfiguration(ProjectExplorer::Target *parent,
98
95
        RemoteLinuxRunConfiguration *source);