summaryrefslogtreecommitdiffstats
path: root/opmlparser.php
diff options
context:
space:
mode:
Diffstat (limited to 'opmlparser.php')
-rw-r--r--opmlparser.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/opmlparser.php b/opmlparser.php
new file mode 100644
index 000000000..ab0c8beb0
--- /dev/null
+++ b/opmlparser.php
@@ -0,0 +1,15 @@
+<?php
+
+class OPMLParser {
+
+ public $raw;
+ public $data;
+
+ public function __construct($raw) {
+ $this->raw = $raw;
+ $this->data = array();
+ }
+
+
+
+} \ No newline at end of file