This directory contains a library and a sample program in order to be able
to read the log files as defined by the University of Koblenz-Landau.

The following subdirectories are in the directory:

  doc:       Contains a description of the log file format.

  logreader: Contains classes to read the log files.
             (no dependencies from Qt libraries - only uses qmake)

  sample:    A small sample application that uses the logreader library to visualize
             a log file.

  sample_console: Basically the same as above, without the visualization. Instead
                  it is a bare bones console application. Again no Qt library dependencies.

Compiling and executing
=============================================================================

Before compiling make sure that the developer version of Qt >= 4.3 is installed.

Compilation is done using the following command:

   qmake && make

After compilation, the sample folder will contain an application called "sample",
which can be started using:

   cd sample
   ./sample

Alternatively you can start the sample console application using

   cd sample_console
   ./sample_console <log file> [optional: start position in seconds]
