record = $record; } public function getByteLength(){ return $this->getLength(); } public function getLength(){ return $this->record->getLength(); } public function get(){ return $this->record; } public function set($record){ $this->record = $record; } public function serialize() { return $this->record->serialize(); } public function unserialize($data) { __construct($this->record->unserialize($data)); } } ?>