~feng-kylin/youker-assistant/youker-assistant

« back to all changes in this revision

Viewing changes to shredmanager/shredmanager.h

  • Committer: kobe
  • Date: 2015-02-13 07:37:10 UTC
  • Revision ID: xiangli@ubuntukylin.com-20150213073710-0jyp02ilyi5njj10
Qt Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <QObject>
 
2
#include <QString>
 
3
#include "../component/plugininterface.h"
 
4
#include "shreddialog.h"
 
5
 
 
6
//插件入口
 
7
class ShredManager : public QObject , PluginInterface
 
8
{
 
9
  Q_OBJECT
 
10
  Q_INTERFACES(PluginInterface)
 
11
 
 
12
public:
 
13
    ShredManager(QObject* parent = 0);
 
14
    virtual ~ShredManager();
 
15
 
 
16
public slots:
 
17
 
 
18
public:
 
19
    virtual QString getGuid();
 
20
    virtual QString getName();
 
21
    virtual QString getDescribe();
 
22
    virtual QString getPicture();
 
23
    virtual void doAction();
 
24
 
 
25
private:
 
26
    ShredDialog shred_dialog;
 
27
};