- Added doc comments to the DataManager class. - Added description of LOG_VERBOSITY levels and reset the value. - Added doc comment to DataMap. - Added doc comments to MessageHandlers class.
13 lines
342 B
C++
13 lines
342 B
C++
//Copyright (c) 2013-2015 United States Government as represented by the Administrator of the
|
|
//National Aeronautics and Space Administration. All Rights Reserved.
|
|
#ifndef XPC_DATAMAPS_H
|
|
#define XPC_DATAMAPS_H
|
|
#include "DataManager.h"
|
|
|
|
namespace XPC
|
|
{
|
|
/// Maps X-Plane dataref lines to XPC DREF values.
|
|
extern DREF XPData[134][8];
|
|
}
|
|
|
|
#endif |