Changeset 295:7340a9356485


Ignore:
Timestamp:
07/21/12 10:24:48 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Documented the fs module and changed some settings

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/Doxyfile

    r294 r295  
    120120# to NO the shortest path that makes the file name unique will be used.
    121121
    122 FULL_PATH_NAMES        = YES
     122FULL_PATH_NAMES        = NO
    123123
    124124# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
     
    776776# VERBATIM_HEADERS is set to NO.
    777777
    778 SOURCE_BROWSER         = NO
     778SOURCE_BROWSER         = YES
    779779
    780780# Setting the INLINE_SOURCES tag to YES will include the body
  • src/mlx/fs.py

    r274 r295  
    1 # Module for generic flight-simulator interfaces
     1## @package mlx.fs
     2#
     3# The main interface to the flight simulator.
     4#
     5# The \ref createSimulator function can be used to create an instance of
     6# the class that can be used to access the simulator. It expects an instance of
     7# the \ref ConnectionListener class, the member functions of which will be
     8# called when something happens with the connection to the simulator.
     9#
     10# The simulator interface is most often used to retrieve the state of the
     11# simulated aircraft. Instances of class \ref AircraftState are used for this
     12# purpose.
    213
    314#-------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.