forked from uncrustify/uncrustify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalign_class.cpp
More file actions
14 lines (12 loc) · 977 Bytes
/
align_class.cpp
File metadata and controls
14 lines (12 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//---------------------------------------------------------------------------
// Statics |
//---------------------------------------------------------------------------
void CTdrFile::SetDistanceMode( TDistMode dm ) { CTdrFile::ms_DistMode = dm; }
TDistMode CTdrFile::GetDistanceMode( void ) { return CTdrFile::ms_DistMode; }
String CTdrFile::GetDistanceModeUnits( void ) { return ( CTdrFile::GetDistanceMode() == dmKM ) ? "km" : "Miles"; }
void CTdrFile::SetBSTCompensation( bool bUseBST ){ ms_bCompBST = bUseBST; }
void CTdrFile::SetFactoryMode( bool bFactory ) { ms_bFactory = bFactory; }
bool CTdrFile::GetFactoryMode( void ) { return ms_bFactory; }
unsigned int CAgentCharacter::iReferenceCount = 0;
IAgentEx* CAgentCharacter::pAgentEx = NULL;
CAgentNotifySink* CAgentCharacter::pSink = NULL;