<?php

// Bit Index Parser (c) yoya@awm.jp

require_once dirname(__FILE__).'/../ByteBit.php';

class 
BitIndexer_Parser {
    
// must be overrided
    
function getChunk($data$offset$length) {
        static 
$i 0;
        
$ret = array('name' => $i'length' => $length);
        
$i++;
        return 
$ret;
    }
}