blob: 5af8f7527e7bfd3c921f497554fc3a7ab3563981 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef NEWSBEUTER_LIST_FORMACTION__H
#define NEWSBEUTER_LIST_FORMACTION__H
#include "formaction.h"
namespace newsbeuter {
class list_formaction : public formaction {
public:
list_formaction(view *, std::string formstr);
protected:
void open_unread_items_in_browser(std::shared_ptr<rss_feed> feed , bool markread);
};
}
#endif
|