/ Published in: PHP
Expand |
Embed | Plain Text
<?php /* * @class: Node * @author: Michael Scribellito * @date: 7-5-11 */ // Node abstraction class Node { // data for node public $item; // link to previous node public $prev; // link to next node public $next; public function __construct() { $this->item = NULL; $this->prev = NULL; $this->next = NULL; } }
You need to login to post a comment.
