<?php
// ----------------------------------------------------------------------------------
// Class: Node
// ----------------------------------------------------------------------------------
/**
* An abstract RDF node.
* Can either be resource, literal or blank node.
* Node is used in some comparisons like is_a($obj, "Node"),
* meaning is $obj a resource, blank node or literal.
*
* History:
* 09-10-2002 : First version of this class.
*
* @version V0.1
* @author Chris Bizer <hide@address.com>
*
* @todo nothing
* @package model
* @abstract
*
*/
class Node extends Object {
} // end:RDFNode
?>