No Description

ByteArray.class.php 204B

1234567891011121314
  1. <?php
  2. class ByteArray {
  3. private $bytesValue;
  4. public function setBytesValue($bytesValue) {
  5. $this->bytesValue = $bytesValue;
  6. }
  7. public function getByteValue() {
  8. return $this->bytesValue;
  9. }
  10. }
  11. ?>