profilecheckitem.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef KSYNC_PROFILECHECKITEM_H
00023 #define KSYNC_PROFILECHECKITEM_H
00024
00025 #include <qlistview.h>
00026
00027 #include "actionpartservice.h"
00028
00029 namespace KSync {
00030
00031
00032 class ProfileCheckItem : public QListViewItem
00033 {
00034 public:
00035 ProfileCheckItem( QListView *parent, const ActionPartService & );
00036 ProfileCheckItem( QListView *parent, QListViewItem *after,
00037 const ActionPartService & );
00038 ~ProfileCheckItem();
00039
00040 ActionPartService actionPart() const;
00041
00042 protected:
00043 void init();
00044
00045 private:
00046 ActionPartService m_part;
00047 };
00048
00049 }
00050
00051 #endif
This file is part of the documentation for kitchensync Library Version 3.3.2.