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
|
class Configuration : public IConfiguration
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<Configuration> Ptr;
|
|
||||||
|
|
||||||
Configuration(const QString &nodeName);
|
Configuration(const QString &nodeName);
|
||||||
Configuration(const Configuration &config);
|
Configuration(const Configuration &config);
|
||||||
Configuration& operator=(const Configuration &config);
|
Configuration& operator=(const Configuration &config);
|
||||||
|
@@ -44,8 +44,6 @@ class VcProjectDocument;
|
|||||||
class Configurations : public IConfigurations
|
class Configurations : public IConfigurations
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<Configurations> Ptr;
|
|
||||||
|
|
||||||
Configurations(VcProjectDocument *vcProjDoc);
|
Configurations(VcProjectDocument *vcProjDoc);
|
||||||
Configurations(const Configurations &configs);
|
Configurations(const Configurations &configs);
|
||||||
Configurations& operator=(const Configurations &configs);
|
Configurations& operator=(const Configurations &configs);
|
||||||
|
@@ -32,8 +32,6 @@
|
|||||||
|
|
||||||
#include "../interfaces/idebuggertool.h"
|
#include "../interfaces/idebuggertool.h"
|
||||||
|
|
||||||
#include <QSharedPointer>
|
|
||||||
|
|
||||||
namespace VcProjectManager {
|
namespace VcProjectManager {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
@@ -42,8 +40,6 @@ class GeneralAttributeContainer;
|
|||||||
class DebuggerTool : public IDebuggerTool
|
class DebuggerTool : public IDebuggerTool
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<DebuggerTool> Ptr;
|
|
||||||
|
|
||||||
DebuggerTool();
|
DebuggerTool();
|
||||||
DebuggerTool(const DebuggerTool &tool);
|
DebuggerTool(const DebuggerTool &tool);
|
||||||
DebuggerTool& operator=(DebuggerTool &tool);
|
DebuggerTool& operator=(DebuggerTool &tool);
|
||||||
|
@@ -32,9 +32,6 @@
|
|||||||
|
|
||||||
#include "../interfaces/ideploymenttool.h"
|
#include "../interfaces/ideploymenttool.h"
|
||||||
|
|
||||||
#include <QHash>
|
|
||||||
#include <QSharedPointer>
|
|
||||||
|
|
||||||
namespace VcProjectManager {
|
namespace VcProjectManager {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
@@ -44,8 +41,6 @@ class GeneralAttributeContainer;
|
|||||||
class DeploymentTool : public IDeploymentTool
|
class DeploymentTool : public IDeploymentTool
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<DeploymentTool> Ptr;
|
|
||||||
|
|
||||||
DeploymentTool();
|
DeploymentTool();
|
||||||
DeploymentTool(const DeploymentTool &tool);
|
DeploymentTool(const DeploymentTool &tool);
|
||||||
DeploymentTool& operator=(const DeploymentTool &tool);
|
DeploymentTool& operator=(const DeploymentTool &tool);
|
||||||
|
@@ -43,8 +43,6 @@ namespace Internal {
|
|||||||
class Files : public IFiles
|
class Files : public IFiles
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<Files> Ptr;
|
|
||||||
|
|
||||||
Files(IVisualStudioProject *parentProject);
|
Files(IVisualStudioProject *parentProject);
|
||||||
Files(const Files &files);
|
Files(const Files &files);
|
||||||
Files &operator =(const Files &files);
|
Files &operator =(const Files &files);
|
||||||
|
@@ -33,7 +33,6 @@
|
|||||||
#include "../interfaces/iglobals.h"
|
#include "../interfaces/iglobals.h"
|
||||||
|
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QHash>
|
|
||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
|
|
||||||
@@ -45,8 +44,6 @@ class Global;
|
|||||||
class Globals : public IGlobals
|
class Globals : public IGlobals
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<Globals> Ptr;
|
|
||||||
|
|
||||||
Globals();
|
Globals();
|
||||||
Globals(const Globals &globals);
|
Globals(const Globals &globals);
|
||||||
Globals& operator=(const Globals &globals);
|
Globals& operator=(const Globals &globals);
|
||||||
|
@@ -32,8 +32,6 @@
|
|||||||
|
|
||||||
#include "../interfaces/iplatform.h"
|
#include "../interfaces/iplatform.h"
|
||||||
|
|
||||||
#include <QSharedPointer>
|
|
||||||
|
|
||||||
namespace VcProjectManager {
|
namespace VcProjectManager {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
|
@@ -44,8 +44,6 @@ class Platform;
|
|||||||
class Platforms : public IPlatforms
|
class Platforms : public IPlatforms
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<Platforms> Ptr;
|
|
||||||
|
|
||||||
Platforms();
|
Platforms();
|
||||||
Platforms(const Platforms &platforms);
|
Platforms(const Platforms &platforms);
|
||||||
Platforms& operator=(const Platforms &platforms);
|
Platforms& operator=(const Platforms &platforms);
|
||||||
|
@@ -32,8 +32,6 @@
|
|||||||
|
|
||||||
#include "../interfaces/ireference.h"
|
#include "../interfaces/ireference.h"
|
||||||
|
|
||||||
#include <QSharedPointer>
|
|
||||||
|
|
||||||
namespace VcProjectManager {
|
namespace VcProjectManager {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
|
@@ -43,8 +43,6 @@ class GeneralAttributeContainer;
|
|||||||
class PublishingData : public IPublishingData
|
class PublishingData : public IPublishingData
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<PublishingData> Ptr;
|
|
||||||
|
|
||||||
PublishingData();
|
PublishingData();
|
||||||
PublishingData(const PublishingData &data);
|
PublishingData(const PublishingData &data);
|
||||||
PublishingData& operator=(const PublishingData &data);
|
PublishingData& operator=(const PublishingData &data);
|
||||||
|
@@ -32,9 +32,6 @@
|
|||||||
|
|
||||||
#include "../interfaces/ipublishingitem.h"
|
#include "../interfaces/ipublishingitem.h"
|
||||||
|
|
||||||
#include <QHash>
|
|
||||||
#include <QSharedPointer>
|
|
||||||
|
|
||||||
namespace VcProjectManager {
|
namespace VcProjectManager {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
|
@@ -42,8 +42,6 @@ namespace Internal {
|
|||||||
class References : public IReferences
|
class References : public IReferences
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<References> Ptr;
|
|
||||||
|
|
||||||
References();
|
References();
|
||||||
References(const References &references);
|
References(const References &references);
|
||||||
References& operator=(const References &references);
|
References& operator=(const References &references);
|
||||||
|
@@ -41,8 +41,6 @@ namespace Internal {
|
|||||||
class ToolFiles : public IToolFiles
|
class ToolFiles : public IToolFiles
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef QSharedPointer<ToolFiles> Ptr;
|
|
||||||
|
|
||||||
ToolFiles();
|
ToolFiles();
|
||||||
ToolFiles(const ToolFiles &toolFiles);
|
ToolFiles(const ToolFiles &toolFiles);
|
||||||
ToolFiles& operator=(const ToolFiles &toolFiles);
|
ToolFiles& operator=(const ToolFiles &toolFiles);
|
||||||
|
@@ -50,8 +50,6 @@ class ConfigurationsBaseWidget;
|
|||||||
|
|
||||||
class VcProjectDocument : public IVisualStudioProject
|
class VcProjectDocument : public IVisualStudioProject
|
||||||
{
|
{
|
||||||
friend class VcProjectDocumentFactory;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
VcProjectDocument(const QString &filePath, VcDocConstants::DocumentVersion docVersion);
|
VcProjectDocument(const QString &filePath, VcDocConstants::DocumentVersion docVersion);
|
||||||
VcProjectDocument(const VcProjectDocument &vcDoc);
|
VcProjectDocument(const VcProjectDocument &vcDoc);
|
||||||
|
Reference in New Issue
Block a user