From: <sv...@ww...> - 2004-10-17 18:52:55
|
Author: delta Date: 2004-10-17 11:52:46 -0700 (Sun, 17 Oct 2004) New Revision: 1292 Modified: trunk/CSP/SimData/CHANGES.current trunk/CSP/SimData/Include/SimData/InterfaceRegistry.h Log: * Added prefix:: to <classname> in macro SIMDATA_REGISTER_INNER_INTERFACE (InterfaceRegistry.h). Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1292 Modified: trunk/CSP/SimData/CHANGES.current =================================================================== --- trunk/CSP/SimData/CHANGES.current 2004-10-17 12:59:45 UTC (rev 1291) +++ trunk/CSP/SimData/CHANGES.current 2004-10-17 18:52:46 UTC (rev 1292) @@ -8,6 +8,9 @@ * Added a SIMDATA_EXPORT on TaggedRecordRegistry. + * Added prefix:: to <classname> in macro SIMDATA_REGISTER_INNER_INTERFACE + (InterfaceRegistry.h). + 2004-10-09: onsight * Fix Timer::reset(). Modified: trunk/CSP/SimData/Include/SimData/InterfaceRegistry.h =================================================================== --- trunk/CSP/SimData/Include/SimData/InterfaceRegistry.h 2004-10-17 12:59:45 UTC (rev 1291) +++ trunk/CSP/SimData/Include/SimData/InterfaceRegistry.h 2004-10-17 18:52:46 UTC (rev 1292) @@ -732,7 +732,7 @@ * See @ref InterfaceMacros for details. */ #define SIMDATA_REGISTER_INNER_INTERFACE(prefix, classname) \ - SIMDATA(ObjectInterface)<classname> *prefix::classname::classname##InterfaceProxy::_interface = 0; \ + SIMDATA(ObjectInterface)<prefix::classname> *prefix::classname::classname##InterfaceProxy::_interface = 0; \ namespace { \ prefix::classname::classname##InterfaceProxy __##prefix##_##classname##_interface; \ } /* anonymous namespace */ |