blob: 13a0db8450c6ad64d6d74337b819eb63e1ee239f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef NEWSBOAT_OPML_H_
#define NEWSBOAT_OPML_H_
#include <libxml/tree.h>
#include "feedcontainer.h"
#include "fileurlreader.h"
namespace newsboat {
namespace opml {
xmlDocPtr generate(const FeedContainer& feedcontainer);
nonstd::optional<std::string> import(
const std::string& filename,
FileUrlReader& urlcfg);
}
} // namespace newsboat
#endif /* NEWSBOAT_OPML_H_ */
|