forked from qt-creator/qt-creator
Rename IRunConfigurationRunner -> IRunControlFactory...
and ApplicationRunConfiguration to LocalApplicationRunConfiguration, preparing remote debugging. Change the interface canRun() to be const, run() to create() (since it does not run anything), use references to the QSharedPointer<Foo>. Introduce d-Pointer and remove unneeded headers from ProjectExplorerPlugin and add missing includes everywhere.
This commit is contained in:
@@ -88,21 +88,21 @@ IRunConfigurationFactory::~IRunConfigurationFactory()
|
||||
{
|
||||
}
|
||||
|
||||
IRunConfigurationRunner::IRunConfigurationRunner(QObject *parent)
|
||||
IRunControlFactory::IRunControlFactory(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
IRunConfigurationRunner::~IRunConfigurationRunner()
|
||||
IRunControlFactory::~IRunControlFactory()
|
||||
{
|
||||
}
|
||||
|
||||
RunControl::RunControl(QSharedPointer<RunConfiguration> runConfiguration)
|
||||
RunControl::RunControl(const QSharedPointer<RunConfiguration> &runConfiguration)
|
||||
: m_runConfiguration(runConfiguration)
|
||||
{
|
||||
}
|
||||
|
||||
QSharedPointer<RunConfiguration> RunControl::runConfiguration()
|
||||
QSharedPointer<RunConfiguration> RunControl::runConfiguration() const
|
||||
{
|
||||
return m_runConfiguration;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user