[go: up one dir, main page]

Menu

[12172e]: / src / browse.h  Maximize  Restore  History

Download this file

21 lines (15 with data), 316 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __BROWSE_H
#define __BROWSE_H
#ifndef NO_CONFIGURE_MENUS
#include <sys/time.h>
class BrowseMenu: public ObjectMenu {
public:
BrowseMenu(const char *path, YWindow *parent = 0);
virtual ~BrowseMenu();
virtual void updatePopup();
private:
char *fPath;
time_t fModTime;
};
#endif
#endif