summaryrefslogtreecommitdiff
path: root/source/rssmeta.d
diff options
context:
space:
mode:
Diffstat (limited to 'source/rssmeta.d')
-rw-r--r--source/rssmeta.d13
1 files changed, 13 insertions, 0 deletions
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;
+}