MuseScore/libmscore/revisions.h

68 lines
1.8 KiB
C
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2010-2011 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __REVISIONS_H__
#define __REVISIONS_H__
2013-05-13 18:49:17 +02:00
namespace Ms {
2016-11-19 11:51:21 +01:00
class XmlWriter;
2013-01-11 18:10:18 +01:00
class XmlReader;
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
// Revision
//---------------------------------------------------------
class Revision {
QString _id;
QString _diff; // diff to parent
QDateTime _dateTime;
Revision* _parent;
QList<Revision*> _branches;
public:
Revision();
2013-01-11 18:10:18 +01:00
void read(XmlReader&);
2016-11-19 11:51:21 +01:00
void write(XmlWriter&) const;
2012-05-26 14:26:10 +02:00
void setParent(Revision* r) { _parent = r; }
Revision* parent() const { return _parent; }
const QList<Revision*>& branches() const { return _branches; }
void setId(const QString& s) { _id = s; }
void setDiff(const QString& s) { _diff = s; }
};
//---------------------------------------------------------
// Revisions
// id: 2.3.1
// | | +-- revision of branch
// | +---- branch number
// +------ revision
//---------------------------------------------------------
class Revisions {
Revision* _trunk;
2016-11-19 11:51:21 +01:00
void write(XmlWriter&, const Revision*) const;
2012-05-26 14:26:10 +02:00
public:
Revisions();
void add(Revision*);
QString getRevision(QString id);
Revision* trunk() { return _trunk; }
2016-11-19 11:51:21 +01:00
void write(XmlWriter&) const;
2012-05-26 14:26:10 +02:00
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-05-26 14:26:10 +02:00
#endif