Changes between Version 14 and Version 15 of MapGuideArchitecture
- Timestamp:
- 11/26/08 16:35:28 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideArchitecture
v14 v15 112 112 113 113 ==== Smart Pointers ==== 114 Wherever possible in the server and any of its components smart pointersare used.114 Wherever possible in the server and any of its components [wiki:MapGuideCodingStandards#SmartPointers smart pointers] are used. 115 115 116 116 ==== Caching ==== … … 156 156 157 157 ====== Operation Object Base Class ====== 158 The Operationclass is an abstract class that provides the base level of functionality. This functionality includes methods to serialize and deserialize the Operation from the data packets sent to the server. It also maintains a reference back to the object that handles its transmission back to the client.158 The [http://trac.osgeo.org/mapguide/browser/trunk/MgDev/Server/src/Common/Base/ServiceOperation.h Operation] class is an abstract class that provides the base level of functionality. This functionality includes methods to serialize and deserialize the Operation from the data packets sent to the server. It also maintains a reference back to the object that handles its transmission back to the client. 159 159 160 160 ====== !OperationRequest Base Class ======