~ubuntu-branches/ubuntu/utopic/youker-assistant/utopic-proposed

« back to all changes in this revision

Viewing changes to src/mytest.h

  • Committer: Package Import Robot
  • Author(s): Kobe Lee (kylinkobe)
  • Date: 2013-09-18 16:22:14 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130918162214-6nqyjyf3cd3ynqky
Tags: 0.2.1-0ubuntu1
* Modify the mouse events of MonitorBall.
* Add reset button for clear pages.
* Add policykit for apt clear in sudodbus.
* Fixed the bug about software status and add masklayer.
* Rewrite the code of system information.
* Add some signals and slots.
* Fixed the bug about Software signals(LP: #1226389).
* Modify KThread and add base.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef MYTEST_H
2
 
#define MYTEST_H
3
 
 
4
 
#include <QDBusInterface>
5
 
#include <QDeclarativeItem>
6
 
class mytest : public QDBusInterface
7
 
{
8
 
    Q_OBJECT
9
 
public:
10
 
    explicit mytest(const QString & service, const QString & path, const QString & interface = QString(), const QDBusConnection & connection = QDBusConnection::systemBus(), QDeclarativeItem *parent = 0);
11
 
    QDBusInterface * iface;
12
 
signals:
13
 
 
14
 
public slots:
15
 
//private:
16
 
//    QStringList list;
17
 
    
18
 
};
19
 
 
20
 
#endif // MYTEST_H