summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/doc/doc_dirview.h
blob: 3a2fd713ef2ffe7f319647096e3e111e6e1d1ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * GPLv2 only zecke@handhelds.org
 */

#ifndef DOC_DIR_VIEW_H
#define DOC_DIR_VIEW_H

#include <iface/dirview.h>


struct Doc_DirView : public PDirView {
    Doc_DirView(  const Config& );
    ~Doc_DirView();

    PInterfaceInfo* interfaceInfo()const;
    PDirLister* dirLister()const;
private:
    bool m_cfg : 1;
    mutable PDirLister* m_lister;
    mutable PInterfaceInfo *m_info;
};


#endif