1 #ifndef _library__recentfiles__hpp__included__
2 #define _library__recentfiles__hpp__included__
14 virtual void operator()() = 0;
16 recent_files(const std::string
& cfgfile
, size_t maxcount
);
17 void add(const std::string
& file
);
18 void add_hook(hook
& h
);
19 void remove_hook(hook
& h
);
20 std::list
<std::string
> get();
24 std::list
<hook
*> hooks
;