README
[n9profile] / profiledeamon.h
1 #ifndef PROFILEDEAMON_H
2 #define PROFILEDEAMON_H
3 /*! \file profiledeamon.h
4     \brief File .H for class  ProfileDeamon
5 \author Jakub Šplíchal <jakub.bzouk@gmail.com>
6 Header file
7 */
8 #include <QtCore/QObject>
9
10 class Profil;
11 class QDBusMessage;
12 /*!
13   \class ProfileDeamon
14   \brief Class for configuring profiles
15   Class set profiles, N900 includes only the two profiles, "general" and "Silent"
16 */
17 class ProfileDeamon : public QObject
18 {
19     Q_OBJECT
20 public:
21     ProfileDeamon(QObject *parent = 0);
22     ~ProfileDeamon();
23
24     bool SetProfile( Profil * profil);
25     Profil GetProfile(QString profil_name);
26     bool ConnectToDeamon();
27 };
28
29 #endif // PROFILEDEAMON_H