Wiki
Show
Ignore:
Timestamp:
02/09/09 13:18:46 (3 years ago)
Author:
Chuck.Esterbrook
Message:

Use new cue init in HowTo?.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cobra/trunk/HowTo/186-UseArrays.cobra

    r1823 r1930  
    107107    var _bufSize as int 
    108108 
    109     def init(fileName as String) 
     109    cue init(fileName as String) 
    110110        .init(fileName, 1024) 
    111111 
    112     def init(fileName as String, bufSize as int) 
     112    cue init(fileName as String, bufSize as int) 
    113113        _fileName = fileName 
    114114        _bufSize = bufSize 
    115115     
    116     def init(stream as Stream) 
     116    cue init(stream as Stream) 
    117117        .init(stream, 1024) 
    118118 
    119     def init(stream as Stream, bufSize as int) 
     119    cue init(stream as Stream, bufSize as int) 
    120120        _stream = stream 
    121121        _bufSize = bufSize