~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to exporter/MuonExporter.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2015-01-22 09:22:23 UTC
  • mfrom: (78.1.3 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20150122092223-wg7uvlwaim32i1yj
Make libmuon replace and break libmuonprivate2, they clash on
the translation files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef MUONEXPORTER_H
21
21
#define MUONEXPORTER_H
22
22
 
23
 
#include "MuonMainWindow.h"
24
 
#include <KUrl>
 
23
#include <QUrl>
25
24
#include <QSet>
 
25
#include <QTimer>
26
26
 
27
27
class MuonExporter : public QObject
28
28
{
31
31
        explicit MuonExporter();
32
32
        ~MuonExporter();
33
33
 
34
 
        void setExportPath(const KUrl& url);
 
34
        void setExportPath(const QUrl& url);
35
35
 
36
36
    public slots:
37
37
        void exportModel();
41
41
        void exportDone();
42
42
 
43
43
    private:
44
 
        KUrl m_path;
 
44
        QUrl m_path;
45
45
        QTimer* m_startExportingTimer;
46
46
        QSet<QString> m_exculdedProperties;
47
47
};