Welcome to mirror list, hosted at ThFree Co, Russian Federation.

updateinfo.h « updater « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25d3e54882de740ccd16759f8d8d5d0c6844b5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// This file is generated by kxml_compiler from occinfo.xml.
// All changes you do to this file will be lost.
#ifndef UPDATEINFO_H
#define UPDATEINFO_H

#include <QString>
#include <QDomElement>
#include <QXmlStreamWriter>

namespace Mirall {

class UpdateInfo
{
  public:
    void setVersion( const QString &v );
    QString version() const;
    void setVersionString( const QString &v );
    QString versionString() const;
    void setWeb( const QString &v );
    QString web() const;
    void setDownloadUrl( const QString &v );
    QString downloadUrl() const;
    /**
      Parse XML object from DOM element.
     */
    static UpdateInfo parseElement( const QDomElement &element, bool *ok );
    void writeElement( QXmlStreamWriter &xml );
    static UpdateInfo parseFile( const QString &filename, bool *ok );
    static UpdateInfo parseString( const QString &xml, bool *ok );
    bool writeFile( const QString &filename );

  private:
    QString mVersion;
    QString mVersionString;
    QString mWeb;
    QString mDownloadUrl;
};

} // namespace Mirall

#endif // UPDATEINFO_H