forked from qt-creator/qt-creator
Cleanup share pointers and unneeded include files.
Change-Id: Ie3b5e59dcd0ca047bc3037252f1455b4388c90be Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Oswald Buddenhagen
parent
e6cd63861b
commit
e89185f2cb
@@ -47,8 +47,6 @@ class GeneralAttributeContainer;
|
||||
class Configuration : public IConfiguration
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<Configuration> Ptr;
|
||||
|
||||
Configuration(const QString &nodeName);
|
||||
Configuration(const Configuration &config);
|
||||
Configuration& operator=(const Configuration &config);
|
||||
|
@@ -44,8 +44,6 @@ class VcProjectDocument;
|
||||
class Configurations : public IConfigurations
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<Configurations> Ptr;
|
||||
|
||||
Configurations(VcProjectDocument *vcProjDoc);
|
||||
Configurations(const Configurations &configs);
|
||||
Configurations& operator=(const Configurations &configs);
|
||||
|
@@ -32,8 +32,6 @@
|
||||
|
||||
#include "../interfaces/idebuggertool.h"
|
||||
|
||||
#include <QSharedPointer>
|
||||
|
||||
namespace VcProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
@@ -42,8 +40,6 @@ class GeneralAttributeContainer;
|
||||
class DebuggerTool : public IDebuggerTool
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<DebuggerTool> Ptr;
|
||||
|
||||
DebuggerTool();
|
||||
DebuggerTool(const DebuggerTool &tool);
|
||||
DebuggerTool& operator=(DebuggerTool &tool);
|
||||
|
@@ -32,9 +32,6 @@
|
||||
|
||||
#include "../interfaces/ideploymenttool.h"
|
||||
|
||||
#include <QHash>
|
||||
#include <QSharedPointer>
|
||||
|
||||
namespace VcProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
@@ -44,8 +41,6 @@ class GeneralAttributeContainer;
|
||||
class DeploymentTool : public IDeploymentTool
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<DeploymentTool> Ptr;
|
||||
|
||||
DeploymentTool();
|
||||
DeploymentTool(const DeploymentTool &tool);
|
||||
DeploymentTool& operator=(const DeploymentTool &tool);
|
||||
|
@@ -43,8 +43,6 @@ namespace Internal {
|
||||
class Files : public IFiles
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<Files> Ptr;
|
||||
|
||||
Files(IVisualStudioProject *parentProject);
|
||||
Files(const Files &files);
|
||||
Files &operator =(const Files &files);
|
||||
|
@@ -33,7 +33,6 @@
|
||||
#include "../interfaces/iglobals.h"
|
||||
|
||||
#include <QList>
|
||||
#include <QHash>
|
||||
|
||||
#include "global.h"
|
||||
|
||||
@@ -45,8 +44,6 @@ class Global;
|
||||
class Globals : public IGlobals
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<Globals> Ptr;
|
||||
|
||||
Globals();
|
||||
Globals(const Globals &globals);
|
||||
Globals& operator=(const Globals &globals);
|
||||
|
@@ -32,8 +32,6 @@
|
||||
|
||||
#include "../interfaces/iplatform.h"
|
||||
|
||||
#include <QSharedPointer>
|
||||
|
||||
namespace VcProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
|
@@ -44,8 +44,6 @@ class Platform;
|
||||
class Platforms : public IPlatforms
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<Platforms> Ptr;
|
||||
|
||||
Platforms();
|
||||
Platforms(const Platforms &platforms);
|
||||
Platforms& operator=(const Platforms &platforms);
|
||||
|
@@ -32,8 +32,6 @@
|
||||
|
||||
#include "../interfaces/ireference.h"
|
||||
|
||||
#include <QSharedPointer>
|
||||
|
||||
namespace VcProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
|
@@ -43,8 +43,6 @@ class GeneralAttributeContainer;
|
||||
class PublishingData : public IPublishingData
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<PublishingData> Ptr;
|
||||
|
||||
PublishingData();
|
||||
PublishingData(const PublishingData &data);
|
||||
PublishingData& operator=(const PublishingData &data);
|
||||
|
@@ -32,9 +32,6 @@
|
||||
|
||||
#include "../interfaces/ipublishingitem.h"
|
||||
|
||||
#include <QHash>
|
||||
#include <QSharedPointer>
|
||||
|
||||
namespace VcProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
|
@@ -42,8 +42,6 @@ namespace Internal {
|
||||
class References : public IReferences
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<References> Ptr;
|
||||
|
||||
References();
|
||||
References(const References &references);
|
||||
References& operator=(const References &references);
|
||||
|
@@ -41,8 +41,6 @@ namespace Internal {
|
||||
class ToolFiles : public IToolFiles
|
||||
{
|
||||
public:
|
||||
typedef QSharedPointer<ToolFiles> Ptr;
|
||||
|
||||
ToolFiles();
|
||||
ToolFiles(const ToolFiles &toolFiles);
|
||||
ToolFiles& operator=(const ToolFiles &toolFiles);
|
||||
|
@@ -50,8 +50,6 @@ class ConfigurationsBaseWidget;
|
||||
|
||||
class VcProjectDocument : public IVisualStudioProject
|
||||
{
|
||||
friend class VcProjectDocumentFactory;
|
||||
|
||||
public:
|
||||
VcProjectDocument(const QString &filePath, VcDocConstants::DocumentVersion docVersion);
|
||||
VcProjectDocument(const VcProjectDocument &vcDoc);
|
||||
|
Reference in New Issue
Block a user