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

« back to all changes in this revision

Viewing changes to src/ubuntu/device/container/containerdeviceprocess.h

  • Committer: Zoltán Balogh
  • Date: 2016-08-26 13:09:58 UTC
  • mfrom: (457.2.4 ubuntu)
  • Revision ID: zoltan@bakter.hu-20160826130958-ic8milo48wd715du
Make QtC-P-U actually compile against Qt 4.1 beta

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
public:
18
18
    ContainerDeviceProcess(const QSharedPointer<const ProjectExplorer::IDevice> &device, QObject *parent = 0);
19
19
    ~ContainerDeviceProcess();
20
 
    virtual void setWorkingDirectory(const QString &directory) override;
21
20
 
22
21
    // DeviceProcess interface
23
22
    virtual void interrupt() override { doSignal(2); }
27
26
    void doSignal (const int sig);
28
27
private:
29
28
    // SshDeviceProcess interface
30
 
    virtual QString fullCommandLine() const override;
31
 
    QString m_workingDir;
 
29
    virtual QString fullCommandLine(const ProjectExplorer::StandardRunnable &) const override;
32
30
    QString m_pidFile;
33
31
 
34
32
};