~ubuntu-branches/ubuntu/feisty/digikam/feisty

« back to all changes in this revision

Viewing changes to utilities/kexif/kexiflistviewitem.h

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2005-03-10 02:39:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050310023902-023nymfst5mg696c
Tags: 0.7.2-2
* debian/TODO: clean
* digikam manpage: better --detect-camera description

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef KEXIFLISTVIEWITEM_H
2
 
#define KEXIFLISTVIEWITEM_H
3
 
 
4
 
#include <klistview.h>
5
 
 
6
 
class KExifEntry;
7
 
 
8
 
class KExifListViewItem : public KListViewItem {
9
 
 
10
 
public:
11
 
 
12
 
    KExifListViewItem(KListView *parent, KExifEntry* entry);
13
 
    KExifListViewItem(KListView *parent, QListViewItem* afterItem,
14
 
                      KExifEntry* entry);
15
 
    ~KExifListViewItem();
16
 
 
17
 
    KExifEntry* exifEntry() const {
18
 
        return mExifEntry;
19
 
    }
20
 
 
21
 
private:
22
 
 
23
 
    KExifEntry* mExifEntry;
24
 
 
25
 
};
26
 
 
27
 
#endif