Add line for debugging
[kdevelopdvcssupport.git] / vcs / vcsstatusinfo.cpp
blob0f8be97ee796c801a6b0bac7d6f742ac62733850
1 /***************************************************************************
2 * This file is part of KDevelop *
3 * Copyright 2007 Andreas Pakulat <apaku@gmx.de> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU Library General Public License as *
7 * published by the Free Software Foundation; either version 2 of the *
8 * License, or (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU Library General Public *
16 * License along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #include "vcsstatusinfo.h"
23 #include <QtCore/QMap>
24 #include <QtCore/QPair>
25 #include <QtCore/QString>
26 #include <QtCore/QStringList>
28 namespace KDevelop
31 class VcsStatusInfoPrivate
33 public:
34 int state;
35 KUrl url;
38 VcsStatusInfo::VcsStatusInfo()
39 : d( new VcsStatusInfoPrivate)
41 d->state = VcsStatusInfo::ItemUnknown;
44 VcsStatusInfo::~VcsStatusInfo()
46 delete d;
49 VcsStatusInfo::VcsStatusInfo( const VcsStatusInfo& rhs )
50 : d(new VcsStatusInfoPrivate)
52 d->state = rhs.d->state;
53 d->url = rhs.d->url;
56 VcsStatusInfo& VcsStatusInfo::operator=( const VcsStatusInfo& rhs)
58 if(this == &rhs)
59 return *this;
60 d->state = rhs.d->state;
61 d->url = rhs.d->url;
62 return *this;
65 bool VcsStatusInfo::operator==( const KDevelop::VcsStatusInfo& rhs) const
67 return ( d->state == rhs.d->state && d->url == rhs.d->url );
70 bool VcsStatusInfo::operator!=( const KDevelop::VcsStatusInfo& rhs) const
72 return !(operator==(rhs));
75 void VcsStatusInfo::setUrl( const KUrl& url )
77 d->url = url;
80 void VcsStatusInfo::setExtendedState( int newstate )
82 d->state = newstate;
85 void VcsStatusInfo::setState( VcsStatusInfo::State state )
87 d->state = state;
90 int VcsStatusInfo::extendedState() const
92 return d->state;
95 KUrl VcsStatusInfo::url() const
97 return d->url;
100 VcsStatusInfo::State VcsStatusInfo::state() const
102 return VcsStatusInfo::State(d->state);