akonadi/kabc
kabcmodel.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KABCMODEL_H
00021 #define KABCMODEL_H
00022
00023 #include "akonadi-kabc_export.h"
00024 #include <akonadi/itemmodel.h>
00025
00026 namespace Akonadi {
00027
00028 class AKONADI_KABC_EXPORT KABCModel : public ItemModel
00029 {
00030 public:
00031 KABCModel( QObject *parent = 0 );
00032
00033 virtual ~KABCModel();
00034
00035 virtual int columnCount( const QModelIndex & parent = QModelIndex() ) const;
00036 virtual QVariant data( const QModelIndex & index, int role = Qt::DisplayRole ) const;
00037 virtual QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
00038
00039 private:
00040 class Private;
00041 Private* const d;
00042 };
00043
00044 }
00045
00046 #endif