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

« back to all changes in this revision

Viewing changes to utilities/kexif/kexififd.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 KEXIFIFD_H
2
 
#define KEXIFIFD_H
3
 
 
4
 
#include <qptrlist.h>
5
 
#include <qstring.h>
6
 
 
7
 
extern "C" {
8
 
#include <libexif/exif-content.h>
9
 
}
10
 
 
11
 
class KExifEntry;
12
 
 
13
 
class KExifIfd {
14
 
 
15
 
public:
16
 
 
17
 
    KExifIfd();
18
 
    KExifIfd(const QString& name, ExifContent* content);
19
 
    ~KExifIfd();
20
 
 
21
 
    KExifIfd(const KExifIfd& ifd);
22
 
    KExifIfd& operator=(const KExifIfd& ifd);
23
 
 
24
 
 
25
 
    void setName(const QString& name);
26
 
    QString getName();
27
 
    void setContent(ExifContent* content);
28
 
    int numberEntries();
29
 
 
30
 
    QPtrList<KExifEntry> entryList;
31
 
 
32
 
private:
33
 
 
34
 
    ExifContent* mExifContent;
35
 
    QString mName;
36
 
 
37
 
};
38
 
 
39
 
#endif