Files
luos/thirdparty/html2ps_pdf/parser._interface.class.php

7 lines
134 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
class Parser {
function process(&$data) {
die("Oops! Unoverridden 'process' method called in ".get_class($this));
}
}
?>