blob: 6fec5b4af71069447e200c0bb4a8616a045fed48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Represents the RssMeta struct, containing the metadata with some fns to
// access it easily.
struct RssMeta
{
// TODO: add the magic.
// filename: either just name or fully qualified should work.
string title_of(string filename) const;
string link_of(string filename) const;
string pubdate_of(string filename) const;
string guid_of(string filename) const;
}
|