From 08cec360e16615b1ae157e4926e7317d16765f7e Mon Sep 17 00:00:00 2001 From: George Abbott Date: Wed, 4 Oct 2023 20:20:57 +0100 Subject: Progress thus far --- source/rssmeta.d | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 source/rssmeta.d (limited to 'source/rssmeta.d') diff --git a/source/rssmeta.d b/source/rssmeta.d new file mode 100644 index 0000000..6fec5b4 --- /dev/null +++ b/source/rssmeta.d @@ -0,0 +1,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; +} -- cgit v1.2.1