Class: LZMA::Index::Decoder
- Inherits:
-
LZMA::Index
- Object
- LZMA::Index
- LZMA::Index::Decoder
- Defined in:
- ext/index.c
Instance Method Summary collapse
- #initialize(argv[], idx) ⇒ Object constructor
Methods inherited from LZMA::Index
Constructor Details
#initialize(argv[], idx) ⇒ Object
48 49 50 51 52 |
# File 'ext/index.c', line 48
static VALUE
idecoder_init(int argc, VALUE argv[], VALUE idx)
{
rb_raise(rb_eNotImpError, "%s", "IMPLEMENT ME!");
}
|