summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/dir/dir_dirview.h
blob: 3b9b7a6130f1ccbf6e7859fb8cd78b3f5b3e9e29 (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 DIR_DIR_VIEW_H
#define DIR_DIR_VIEW_H

#include <iface/dirview.h>


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

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


#endif