~ubuntu-branches/ubuntu/intrepid/kdesdk/intrepid-updates

« back to all changes in this revision

Viewing changes to cervisia/cvsservice/repository.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-28 10:11:43 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: james.westby@ubuntu.com-20080528101143-gzc3styjz1b70zxu
Tags: upstream-4.0.80
ImportĀ upstreamĀ versionĀ 4.0.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 *
14
14
 * You should have received a copy of the GNU Library General Public License
15
15
 * along with this program; see the file COPYING.  If not, write to
16
 
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 * Boston, MA 02111-1307, USA.
 
16
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA 02110-1301, USA.
18
18
 *
19
19
 */
20
20
 
22
22
#define REPOSITORY_H
23
23
 
24
24
#include <qobject.h>
25
 
#include <dcopobject.h>
 
25
 
 
26
#include <kdemacros.h>
26
27
 
27
28
class QString;
28
29
 
31
32
 * Represents a local or remote cvs repository with
32
33
 * its repository-specific configuration data.
33
34
 */
34
 
class KDE_EXPORT Repository : public QObject, public DCOPObject
 
35
class KDE_EXPORT Repository : public QObject
35
36
{
36
 
    K_DCOP
37
37
    Q_OBJECT
38
 
 
39
38
public:
40
39
    Repository();
41
40
    explicit Repository(const QString& repository);
42
41
    ~Repository();
43
42
 
 
43
public Q_SLOTS:
44
44
    /**
45
45
     * cvs command (including the user-specified path) with the options
46
46
     * for this repository.
67
67
     * repository using :ext: access method. ($CVS_SERVER)
68
68
     *
69
69
     * @return The server program. Can be null if not set.
70
 
     */
 
70
    */
71
71
    QString server() const;
72
72
 
73
 
k_dcop:
74
73
    /**
75
74
     * Changes the working copy and the corresponding cvs repository.
76
75
     *