From: <sv...@ww...> - 2004-07-17 18:43:27
|
Author: mkrose Date: 2004-07-17 11:43:21 -0700 (Sat, 17 Jul 2004) New Revision: 1162 Modified: trunk/CSP/SimData/CHANGES.current trunk/CSP/SimData/Include/SimData/TaggedRecordRegistry.h Log: Fixed the custom id accessor method names in tr factory. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1162 Modified: trunk/CSP/SimData/CHANGES.current =================================================================== --- trunk/CSP/SimData/CHANGES.current 2004-07-17 18:23:23 UTC (rev 1161) +++ trunk/CSP/SimData/CHANGES.current 2004-07-17 18:43:21 UTC (rev 1162) @@ -38,6 +38,8 @@ that can be allocated, and added a new method to get the total allocated space. + * Fixed the custom id accessor method names in tr factory. + 2004-07-09: onsight * Changed the formating of HashT values to use fixed-width hex instead of decimal numbers, and cleaned up the data archive Modified: trunk/CSP/SimData/Include/SimData/TaggedRecordRegistry.h =================================================================== --- trunk/CSP/SimData/Include/SimData/TaggedRecordRegistry.h 2004-07-17 18:23:23 UTC (rev 1161) +++ trunk/CSP/SimData/Include/SimData/TaggedRecordRegistry.h 2004-07-17 18:43:21 UTC (rev 1162) @@ -54,8 +54,8 @@ virtual std::string getName() const=0; virtual int getVersion() const=0; virtual TaggedRecord::Id getId() const=0; - virtual void setLocalId(int) const=0; - virtual int getLocalId() const=0; + virtual void setCustomId(int) const=0; + virtual int getCustomId() const=0; virtual ~TaggedRecordFactoryBase() { } }; |