class Pocolog::ToNewFormatConfig

Attributes

big_endian[R]

Public Class Methods

optname() click to toggle source
# File bin/pocolog, line 74
def self.optname; "--to-new-format" end

Public Instance Methods

execute() click to toggle source
# File bin/pocolog, line 89
def execute
    init { |from, to| Logfiles.to_new_format(from, to, @big_endian) }
end
little_endian() click to toggle source

For convert, specifies the byte order of the original file. This is needed for v1 files. See also big_endian.

# File bin/pocolog, line 79
def little_endian
    @big_endian = false
end