~ubuntu-branches/ubuntu/maverick/kdeutils/maverick-proposed

« back to all changes in this revision

Viewing changes to ark/plugins/cli7zplugin/cliplugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-07-09 04:21:43 UTC
  • mfrom: (1.2.47 upstream)
  • Revision ID: james.westby@ubuntu.com-20100709042143-g7b98oq44qrc35cf
Tags: 4:4.4.92-0ubuntu1
* New upstream release
  - Bump kde-sc-dev-latest to 4.4.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    virtual bool readListLine(const QString &line);
40
40
 
41
41
private:
 
42
    enum ArchiveType {
 
43
        ArchiveType7z = 0,
 
44
        ArchiveTypeBZip2,
 
45
        ArchiveTypeGZip,
 
46
        ArchiveTypeTar,
 
47
        ArchiveTypeZip
 
48
    };
 
49
 
42
50
    enum ReadState {
43
51
        ReadStateHeader = 0,
44
52
        ReadStateArchiveInformation,
45
53
        ReadStateEntryInformation
46
54
    };
47
55
 
 
56
    ArchiveType m_archiveType;
48
57
    Kerfuffle::ArchiveEntry m_currentArchiveEntry;
49
58
    ReadState m_state;
50
59
};