Initial revision
This commit is contained in:
44
src/osgPlugins/flt/GroupRecord.cpp
Normal file
44
src/osgPlugins/flt/GroupRecord.cpp
Normal file
@@ -0,0 +1,44 @@
|
||||
// GroupRecord.cpp
|
||||
|
||||
|
||||
#include "flt.h"
|
||||
#include "Registry.h"
|
||||
#include "GroupRecord.h"
|
||||
|
||||
using namespace flt;
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// GroupRecord
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
RegisterRecordProxy<GroupRecord> g_GroupProxy;
|
||||
|
||||
|
||||
GroupRecord::GroupRecord()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// virtual
|
||||
GroupRecord::~GroupRecord()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void GroupRecord::endian()
|
||||
{
|
||||
SGroup *pSGroup = (SGroup*)getData();
|
||||
|
||||
ENDIAN( pSGroup->iGroupRelPriority );
|
||||
ENDIAN( pSGroup->dwFlags );
|
||||
ENDIAN( pSGroup->iSpecialId_1 );
|
||||
ENDIAN( pSGroup->iSpecialId_2 );
|
||||
ENDIAN( pSGroup->iSignificance );
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user