Maemo: Refactor device configurations list.

This commit is contained in:
Christian Kandeler
2011-01-13 13:49:23 +01:00
parent 56bbd4adca
commit 164cc4ff2c
26 changed files with 509 additions and 569 deletions

View File

@@ -35,19 +35,19 @@
#ifndef DEVICEENVREADER_H
#define DEVICEENVREADER_H
#include "maemodeviceconfigurations.h"
#include <utils/environment.h>
#include <QtCore/QObject>
#include <QtCore/QSharedPointer>
namespace Core {
class SshRemoteProcessRunner;
}
namespace Qt4ProjectManager {
namespace Internal {
namespace Internal {
class MaemoDeviceConfig;
class MaemoRunConfiguration;
class MaemoDeviceEnvReader : public QObject
@@ -81,7 +81,7 @@ private:
QString m_remoteOutput;
QByteArray m_remoteErrorOutput;
Utils::Environment m_env;
MaemoDeviceConfig m_devConfig;
QSharedPointer<const MaemoDeviceConfig> m_devConfig;
MaemoRunConfiguration *m_runConfig;
QSharedPointer<Core::SshRemoteProcessRunner> m_remoteProcessRunner;
};