Changeset 295:7340a9356485
- Timestamp:
- 07/21/12 10:24:48 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Doxyfile
r294 r295 120 120 # to NO the shortest path that makes the file name unique will be used. 121 121 122 FULL_PATH_NAMES = YES122 FULL_PATH_NAMES = NO 123 123 124 124 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag … … 776 776 # VERBATIM_HEADERS is set to NO. 777 777 778 SOURCE_BROWSER = NO778 SOURCE_BROWSER = YES 779 779 780 780 # 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. 2 13 3 14 #-------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.