<?php
class OPMLParser {
public $raw;
public $data;
public function __construct($raw) {
$this->raw = $raw;
$this->data = array();
}