13 #ifndef DtInterestManagementRecord_H_
14 #define DtInterestManagementRecord_H_
37 void setDdmRegionSize(
int size);
38 int ddmRegionSize()
const;
40 void setRegionUpdateThreshold(
int percentage);
41 int regionUpdateThreshold()
const;
43 void setAltitudeThresholdEnabled(
bool enabled);
44 bool altitudeThresholdEnabled()
const;
46 void setAltitudeThreshold(
int threshold);
47 int altitudeThreshold()
const;
50 friend class boost::serialization::access;
55 template<
class Archive>
56 void serialize(Archive & ar,
const unsigned int version)
58 ar & BOOST_SERIALIZATION_NVP(myDdmRegionSize);
59 ar & BOOST_SERIALIZATION_NVP(myRegionUpdateThreshold);
60 ar & BOOST_SERIALIZATION_NVP(myAltitudeThresholdEnabled);
61 ar & BOOST_SERIALIZATION_NVP(myAltitudeThreshold);
int myRegionUpdateThreshold
Definition: DtInterestManagementRecord.h:65
voidpf void uLong size
Definition: ioapi.h:39
int myAltitudeThreshold
Definition: DtInterestManagementRecord.h:67
Contains DLL export macros.
int myDdmRegionSize
Definition: DtInterestManagementRecord.h:64
void serialize(Archive &ar, const unsigned int version)
When the class Archive corresponds to an output archive, the & operator is defined similar to <<...
Definition: DtInterestManagementRecord.h:56
bool myAltitudeThresholdEnabled
Definition: DtInterestManagementRecord.h:66
#define DT_DLL_MAKARCHIVES
Definition: makArchives.h:31
Record of interest management / DDM settings.
Definition: DtInterestManagementRecord.h:22