[mapguide-commits] r1107 - in trunk/MgDev/Common: Foundation/Data Foundation/System Geometry/Buffer MapGuideCommon/Controller MapGuideCommon/Services PlatformBase/MapLayer PlatformBase/Services

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Feb 12 19:17:47 EST 2007


Author: philipsharman
Date: 2007-02-12 19:17:46 -0500 (Mon, 12 Feb 2007)
New Revision: 1107

Modified:
   trunk/MgDev/Common/Foundation/Data/ByteReader.h
   trunk/MgDev/Common/Foundation/System/ByteSourceFileImpl.h
   trunk/MgDev/Common/Foundation/System/ByteSourceImpl.h
   trunk/MgDev/Common/Foundation/System/ByteSourceMemoryImpl.h
   trunk/MgDev/Common/Foundation/System/ByteSourceSocketStreamImpl.h
   trunk/MgDev/Common/Foundation/System/ByteSourceStreamImpl.h
   trunk/MgDev/Common/Foundation/System/ClassFactory.h
   trunk/MgDev/Common/Foundation/System/FoundationConfigProperties.h
   trunk/MgDev/Common/Foundation/System/ServerConnectionBase.h
   trunk/MgDev/Common/Foundation/System/StreamReader.h
   trunk/MgDev/Common/Geometry/Buffer/bufrsort.h
   trunk/MgDev/Common/Geometry/Buffer/oarray.h
   trunk/MgDev/Common/MapGuideCommon/Controller/HtmlController.h
   trunk/MgDev/Common/MapGuideCommon/Services/DrawingDefs.h
   trunk/MgDev/Common/MapGuideCommon/Services/KmlDefs.h
   trunk/MgDev/Common/MapGuideCommon/Services/PrintLayout.h
   trunk/MgDev/Common/MapGuideCommon/Services/RenderingDefs.h
   trunk/MgDev/Common/MapGuideCommon/Services/ServerAdminDefs.h
   trunk/MgDev/Common/MapGuideCommon/Services/ServerConnection.h
   trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionImp.h
   trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionStack.h
   trunk/MgDev/Common/MapGuideCommon/Services/SiteConnection.h
   trunk/MgDev/Common/MapGuideCommon/Services/TileDefs.h
   trunk/MgDev/Common/PlatformBase/MapLayer/LayerBase.h
   trunk/MgDev/Common/PlatformBase/MapLayer/LayerGroup.h
   trunk/MgDev/Common/PlatformBase/MapLayer/MapBase.h
   trunk/MgDev/Common/PlatformBase/Services/BaseServiceDefs.h
   trunk/MgDev/Common/PlatformBase/Services/GwsFeatureReader.h
   trunk/MgDev/Common/PlatformBase/Services/InsertFeatures.h
   trunk/MgDev/Common/PlatformBase/Services/LockFeatures.h
   trunk/MgDev/Common/PlatformBase/Services/LongTransactionReader.h
   trunk/MgDev/Common/PlatformBase/Services/Reader.h
   trunk/MgDev/Common/PlatformBase/Services/ResourceDefs.h
   trunk/MgDev/Common/PlatformBase/Services/ResourceService.h
   trunk/MgDev/Common/PlatformBase/Services/ServiceRegistry.h
   trunk/MgDev/Common/PlatformBase/Services/SpatialContextReader.h
   trunk/MgDev/Common/PlatformBase/Services/UnlockFeatures.h
   trunk/MgDev/Common/PlatformBase/Services/UpdateFeatures.h
Log:
Fixed Doxygen commands in the comments. These commands
are used to generate the API Reference.

Modified: trunk/MgDev/Common/Foundation/Data/ByteReader.h
===================================================================
--- trunk/MgDev/Common/Foundation/Data/ByteReader.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/Data/ByteReader.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -123,7 +123,7 @@
     /// MgByteReader(string content, string mimeType);
     /// \htmlinclude SyntaxBottom.html
     ///
-    /// \param content (string/String/string)
+    /// \param contents (string/String/string)
     /// String contents for byte reader.
     ///
     /// \param mimeType (string/String/string)
@@ -149,7 +149,7 @@
     /// MgByteReader(string content, string mimeType);
     /// \htmlinclude SyntaxBottom.html
     ///
-    /// \param content (Byte[]/byte[]/string)
+    /// \param contents (Byte[]/byte[]/string)
     /// Binary contents for byte reader.
     ///
     /// \param length (int/int/int)

Modified: trunk/MgDev/Common/Foundation/System/ByteSourceFileImpl.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ByteSourceFileImpl.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ByteSourceFileImpl.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -114,7 +114,7 @@
     INT64       m_size;
     bool        m_temporary;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 
 /// Inline Methods
@@ -123,6 +123,6 @@
 {
     return m_temporary;
 }
-/// \endcond INTERNAL
+/// \endcond
 
 #endif // MG_BYTE_SOURCE_FILE_IMPL_H_

Modified: trunk/MgDev/Common/Foundation/System/ByteSourceImpl.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ByteSourceImpl.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ByteSourceImpl.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -84,6 +84,6 @@
     ///
     virtual void Rewind() = 0;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif // MG_BYTE_SOURCE_IMPL_H_

Modified: trunk/MgDev/Common/Foundation/System/ByteSourceMemoryImpl.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ByteSourceMemoryImpl.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ByteSourceMemoryImpl.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -116,6 +116,6 @@
     Ptr<MgByte> m_data;
     INT32   m_pos;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif // MG_BYTE_SOURCE_MEMORY_IMPL_H_

Modified: trunk/MgDev/Common/Foundation/System/ByteSourceSocketStreamImpl.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ByteSourceSocketStreamImpl.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ByteSourceSocketStreamImpl.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -100,6 +100,6 @@
     INT32     m_blockRead;
 };
 
-/// \endcond INTERNAL
+/// \endcond
 
 #endif // MG_BYTE_SOURCE_SOCKET_STREAM_IMPL_H_

Modified: trunk/MgDev/Common/Foundation/System/ByteSourceStreamImpl.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ByteSourceStreamImpl.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ByteSourceStreamImpl.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -96,6 +96,6 @@
 protected:
     MgStream* m_stream;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/Foundation/System/ClassFactory.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ClassFactory.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ClassFactory.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -20,14 +20,14 @@
 
 #include <map>
 
-/// \cond INTERNAL
+
 /// Typedef for class creation functions
 typedef MgObject* (*ClassCreatorFunc)();
-/// \endcond INTERNAL
 
 
+/// \cond INTERNAL
+
 /// INTERNAL_CLASS
-/// \cond INTERNAL
 /// \brief
 /// Class registration for Foundation derived applications
 class MG_FOUNDATION_API MgClassFactory : public MgDisposable
@@ -82,5 +82,6 @@
     std::map<int, ClassCreatorFunc> m_classCreators;
 
 };
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/Foundation/System/FoundationConfigProperties.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/FoundationConfigProperties.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/FoundationConfigProperties.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -67,6 +67,6 @@
     // Common Configuration Validation Information Maps
     static const MgConfigValidationInfo sm_cviGeneralProperties[];
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/Foundation/System/ServerConnectionBase.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/ServerConnectionBase.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/ServerConnectionBase.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -44,5 +44,6 @@
     ///
     virtual ~MgServerConnectionBase();
 };
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/Foundation/System/StreamReader.h
===================================================================
--- trunk/MgDev/Common/Foundation/System/StreamReader.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Foundation/System/StreamReader.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -250,5 +250,7 @@
     Ptr<MgStreamHelper> m_sHelper;
     MgServerConnectionBase* m_conn; // raw pointer to avoid circular dependency
 };
+/// \endcond
+
 #endif // _MGSTREAMREADER_H_
-/// \endcond INTERNAL
+

Modified: trunk/MgDev/Common/Geometry/Buffer/bufrsort.h
===================================================================
--- trunk/MgDev/Common/Geometry/Buffer/bufrsort.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Geometry/Buffer/bufrsort.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -16,7 +16,6 @@
 //
 
 /// \cond INTERNAL
-/// \ingroup Geometry_Module
 
 //------------------------------------------------------------------------------
 //
@@ -342,6 +341,6 @@
 
 } // end: GetNProgressSubIntervals()
 
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/Geometry/Buffer/oarray.h
===================================================================
--- trunk/MgDev/Common/Geometry/Buffer/oarray.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/Geometry/Buffer/oarray.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -16,7 +16,6 @@
 //
 
 /// \cond INTERNAL
-/// \ingroup Geometry_Module
 
 //-----------------------------------------------------------------------------
 //
@@ -303,4 +302,4 @@
 
 #endif
 
-/// \endcond INTERNAL
+/// \endcond

Modified: trunk/MgDev/Common/MapGuideCommon/Controller/HtmlController.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Controller/HtmlController.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Controller/HtmlController.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -239,6 +239,6 @@
 
 };
 
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/MapGuideCommon/Services/DrawingDefs.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/DrawingDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/DrawingDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -37,6 +37,6 @@
     static const int EnumerateSectionResources  = 0x1111EC08;
     static const int GetCoordinateSpace         = 0x1111EC09;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/MapGuideCommon/Services/KmlDefs.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/KmlDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/KmlDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -32,6 +32,6 @@
     static const int GetLayerKml               = 0x1111E702;
     static const int GetFeaturesKml            = 0x1111E703;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/MapGuideCommon/Services/PrintLayout.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/PrintLayout.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/PrintLayout.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -297,6 +297,8 @@
     void GetLayoutPropertiesFromXml(MgXmlUtil* pXmlUtil);
 };
 
+/// \endcond
+
 #endif // MG_PRINT_LAYOUT_H
 
-/// \endcond INTERNAL
+

Modified: trunk/MgDev/Common/MapGuideCommon/Services/RenderingDefs.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/RenderingDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/RenderingDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -37,6 +37,6 @@
     static const int RenderDynamicOverlay       = 0x1111E909;
     static const int QueryFeatureProperties     = 0x1111E90A;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/MapGuideCommon/Services/ServerAdminDefs.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/ServerAdminDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/ServerAdminDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -215,6 +215,6 @@
 public: \
     static MgObject* CreateObject();
 
-/// \endcond INTERNAL
+/// \endcond
 
 #endif // MG_SERVER_ADMIN_DEFS_H

Modified: trunk/MgDev/Common/MapGuideCommon/Services/ServerConnection.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/ServerConnection.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/ServerConnection.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -200,7 +200,8 @@
 
     MgServerConnectionImp* m_serverConnImp;
 };
+/// \endcond
 
 #endif
 
-/// \endcond INTERNAL
+

Modified: trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionImp.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionImp.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionImp.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -74,7 +74,7 @@
 private:
     ACE_SOCK_Stream* mServer;
 };
+/// \endcond
 
 #endif
 
-/// \endcond INTERNAL

Modified: trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionStack.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionStack.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/ServerConnectionStack.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -86,6 +86,6 @@
     ConnectionQueue* m_queue;
     ConnectionList* m_inUse;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/MapGuideCommon/Services/SiteConnection.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/SiteConnection.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/SiteConnection.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -108,7 +108,7 @@
     /// Open should authenticate with MgSiteConnection::Authenticate which in turn uses the appropriate
     /// helper class.  A connection to the Site Server, if necessary, should be created
     /// and maintained.
-    /// \endcond INTERNAL
+    /// \endcond
     ///
     void Open(MgUserInformation* userInformation);
 
@@ -144,7 +144,7 @@
     /// \cond INTERNAL
     /// INTERNAL:
     /// GetService relies on the implementation of the bound MgSiteHelper class
-    /// \endcond INTERNAL
+    /// \endcond
     ///
     MgService* CreateService(INT32 serviceType);
 
@@ -186,7 +186,7 @@
     /// \cond INTERNAL
     /// INTERNAL:
     /// Since the URL is specified, this method binds to an MgHttpProxySiteHelper.
-    /// \endcond INTERNAL
+    /// \endcond
     ///
     MgSiteConnection(CREFSTRING url);
 
@@ -240,7 +240,7 @@
     /// \cond INTERNAL
     /// Open must be called before this method will work.  If we are the Site Server
     /// then no connection will be returned.
-    /// \endcond INTERNAL
+    /// \endcond
     ///
     MgServerConnection* GetSiteConnection();
 

Modified: trunk/MgDev/Common/MapGuideCommon/Services/TileDefs.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/TileDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/MapGuideCommon/Services/TileDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -31,7 +31,7 @@
     static const int SetTile    = 0x1111E802;
     static const int ClearCache = 0x1111E803;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 
 /// \cond INTERNAL
@@ -48,6 +48,6 @@
     static const INT32 tileDPI;         // assumed DPI for all tiles
     static const STRING tileFormat;     // image format for all tiles
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #endif

Modified: trunk/MgDev/Common/PlatformBase/MapLayer/LayerBase.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/MapLayer/LayerBase.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/MapLayer/LayerBase.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -96,7 +96,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual STRING GetName();  /// __get, __set
@@ -145,7 +145,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual STRING GetObjectId();  
@@ -191,7 +191,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     /// \todo
@@ -247,7 +247,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool NeedsRefresh();
@@ -301,7 +301,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool GetVisible();  /// __get, __set
@@ -367,7 +367,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool IsVisible();
@@ -393,7 +393,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     /// \todo
@@ -445,7 +445,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual MgResourceIdentifier* GetLayerDefinition();  /// __get
@@ -517,7 +517,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool GetDisplayInLegend();  /// __get, __set
@@ -569,7 +569,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool GetExpandInLegend();  /// __get
@@ -594,7 +594,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual STRING GetLegendLabel();  /// __get, __set

Modified: trunk/MgDev/Common/PlatformBase/MapLayer/LayerGroup.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/MapLayer/LayerGroup.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/MapLayer/LayerGroup.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -83,7 +83,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual STRING GetName();  /// __get
@@ -108,7 +108,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     /// \todo
@@ -158,7 +158,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual MgLayerGroup* GetGroup();  /// __get, __set
@@ -213,7 +213,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool GetVisible();  /// __get, __set
@@ -274,7 +274,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool IsVisible();
@@ -301,7 +301,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool GetDisplayInLegend();  /// __get, __set
@@ -353,7 +353,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual bool GetExpandInLegend();  /// __get
@@ -378,7 +378,7 @@
     ///
     /// <!-- Example (PHP) -->
     /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
+    /// See \link MgMapBase MgMapBase class \endlink.
     /// \htmlinclude ExampleBottom.html
     ///
     virtual STRING GetLegendLabel();  /// __get, __set

Modified: trunk/MgDev/Common/PlatformBase/MapLayer/MapBase.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/MapLayer/MapBase.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/MapLayer/MapBase.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -278,11 +278,6 @@
     /// \return
     /// Returns the name of the map as a string.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual STRING GetName();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -303,11 +298,6 @@
     /// \return
     /// Returns the session id of the map as a string.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     STRING GetSessionId();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -329,11 +319,6 @@
     /// \return
     /// Returns the unique identifier of this map as a string.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual STRING GetObjectId();  
 
     //////////////////////////////////////////////////////////////////
@@ -356,11 +341,6 @@
     /// Returns an MgResourceIdentifier that specifies the location
     /// of the map definition.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual MgResourceIdentifier* GetMapDefinition();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -382,11 +362,6 @@
     /// Returns the spatial reference system in the OpenGIS \link WKT WKT \endlink
     /// (Well Known Text) format as a string.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual STRING GetMapSRS();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -408,11 +383,6 @@
     /// Returns an MgEnvelope that defines the overall extent of the
     /// map.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual MgEnvelope* GetMapExtent();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -433,11 +403,6 @@
     /// \return
     /// Returns an MgLayerCollection that contains the map layers.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual MgLayerCollection* GetLayers();  
 
     //////////////////////////////////////////////////////////////////
@@ -459,11 +424,6 @@
     /// Returns an MgLayerGroupCollection that contains the map
     /// layer groups.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual MgLayerGroupCollection* GetLayerGroups();  
 
     //////////////////////////////////////////////////////////////////
@@ -596,11 +556,6 @@
     /// \return
     /// Returns an MgPoint that specifies the center of the map.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual MgPoint* GetViewCenter();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -621,11 +576,6 @@
     /// \return
     /// Returns a double that specifies the scale of the map.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual double GetViewScale();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -647,11 +597,6 @@
     /// \return
     /// Returns an MgEnvelope that defines the current data extent.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual MgEnvelope* GetDataExtent();   /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -672,11 +617,6 @@
     /// \return
     /// Returns the number of dots per inch of the map display.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual INT32 GetDisplayDpi();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -701,11 +641,6 @@
     /// \return
     /// Returns the width of the map display in pixels.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual INT32 GetDisplayWidth();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -731,11 +666,6 @@
     /// \return
     /// Returns the height of the map display in pixels.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual INT32 GetDisplayHeight();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -756,11 +686,6 @@
     /// \return
     /// Returns the number of finite display scales in the map.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     virtual INT32 GetFiniteDisplayScaleCount();  /// __get
 
     //////////////////////////////////////////////////////////////////
@@ -784,11 +709,6 @@
     /// \return
     /// Returns the finite display scale.
     ///
-    /// <!-- Example (PHP) -->
-    /// \htmlinclude PHPExampleTop.html
-    /// See \link MgMap MgMap Class \endlink.
-    /// \htmlinclude ExampleBottom.html
-    ///
     /// \exception MgOutOfRangeException if the index is invalid.
     ///
     virtual double GetFiniteDisplayScaleAt(INT32 index);

Modified: trunk/MgDev/Common/PlatformBase/Services/BaseServiceDefs.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/BaseServiceDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/BaseServiceDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -18,7 +18,7 @@
 #ifndef MGBASESERVICEDEFS_H
 #define MGBASESERVICEDEFS_H
 
-/// \defgroup MgServiceType
+/// \defgroup MgServiceType MgServiceType
 /// \ingroup Common_Module
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/GwsFeatureReader.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/GwsFeatureReader.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/GwsFeatureReader.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -71,4 +71,6 @@
     static const INT32 m_cls_id = PlatformBase_FeatureService_GwsFeatureReader;
 
 };
+/// \endcond
+
 #endif

Modified: trunk/MgDev/Common/PlatformBase/Services/InsertFeatures.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/InsertFeatures.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/InsertFeatures.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -18,7 +18,7 @@
 #ifndef _MGINSERTFEATURES_H
 #define _MGINSERTFEATURES_H
 
-/// \defgroup MgInsertFeatures
+/// \defgroup MgInsertFeatures MgInsertFeatures
 /// \ingroup Feature_Service_classes
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/LockFeatures.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/LockFeatures.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/LockFeatures.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -21,7 +21,7 @@
 class MgLockFeatures;
 template class MG_PLATFORMBASE_API Ptr<MgLockFeatures>;
 
-/// \defgroup MgLockFeatures
+/// \defgroup MgLockFeatures MgLockFeatures
 /// \ingroup Feature_Service_classes
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/LongTransactionReader.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/LongTransactionReader.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/LongTransactionReader.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -20,7 +20,7 @@
 
 class MgLongTransactionData;
 
-/// \defgroup MgLongTransactionReader
+/// \defgroup MgLongTransactionReader MgLongTransactionReader
 /// \ingroup Feature_Service_classes
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/Reader.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/Reader.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/Reader.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -20,7 +20,7 @@
 
 class MgRaster;
 
-/// \defgroup MgReader
+/// \defgroup MgReader MgReader
 /// \ingroup Feature_Service_classes
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/ResourceDefs.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/ResourceDefs.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/ResourceDefs.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -31,7 +31,7 @@
     static const STRING Path;        /// Reserved characters in paths = "%*:|\?<’&”>=".
     static const STRING WhiteSpace;  /// White space characters = " t r n v f".
 };
-/// \endcond INTERNAL
+/// \endcond
 
 
 ///////////////////////////////////////////////////////////////////////////////
@@ -404,7 +404,7 @@
     static const STRING Groups;         /// Groups folder name
     static const STRING Roles;          /// Roles folder name
 };
-/// \endcond INTERNAL
+/// \endcond
 
 
 /// \cond INTERNAL
@@ -420,7 +420,7 @@
     static const INT32 Security = 0x00000002;
     static const INT32 Metadata = 0x00000004;
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #define DECLARE_DYNCREATE_RESOURCE() \
 public: \

Modified: trunk/MgDev/Common/PlatformBase/Services/ResourceService.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/ResourceService.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/ResourceService.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -505,7 +505,7 @@
     /// location <c>Library://World/Layers/Cities.Layer</c>.
     /// Similarly, you would add Countries.Layer to <c>Library://World/Layers/Countries.Layer</c>.
     /// \n
-    /// 5) Set any necessary \link WorkingWithResourceData resource data \endlink.
+    /// 5) Set any necessary resource data.
     /// See SetResourceData.
     /// \htmlinclude ExampleBottom.html
     ///

Modified: trunk/MgDev/Common/PlatformBase/Services/ServiceRegistry.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/ServiceRegistry.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/ServiceRegistry.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -25,6 +25,7 @@
 #endif
 
 /// \cond INTERNAL
+
 //////////////////////////////////////////////////////////////////////////////
 /// \brief
 /// Enumeration for the server connection type.
@@ -37,7 +38,7 @@
     sctRemoteServerToServer,            /// Proxy implementation used
     sctServerToHttp                     /// Http requests are made
 };
-/// \endcond INTERNAL
+/// \endcond
 
 #define DECLARE_CREATE_SERVICE() \
 public: \
@@ -47,14 +48,13 @@
     MgService* class_name::CreateService() \
         { return new class_name(); }
 
-/// \cond INTERNAL
 /// Typedef for class creation functions
 typedef MgService* (*ServiceCreatorFunc)();
-/// \endcond INTERNAL
 
 
-/// INTERNAL_CLASS
 /// \cond INTERNAL
+
+/// INTERNAL_CLASS
 /// \brief
 /// Service registration for PlatformBase derived applications
 class MG_PLATFORMBASE_API MgServiceRegistry : public MgDisposable
@@ -110,7 +110,6 @@
     map<ServerConnectionType, ServiceRegistry> m_serviceCreators;
 
 };
-
 /// \endcond
 
 #endif

Modified: trunk/MgDev/Common/PlatformBase/Services/SpatialContextReader.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/SpatialContextReader.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/SpatialContextReader.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -20,7 +20,7 @@
 
 class MgSpatialContextData;
 
-/// \defgroup MgSpatialContextReader
+/// \defgroup MgSpatialContextReader MgSpatialContextReader
 /// \ingroup Feature_Service_classes
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/UnlockFeatures.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/UnlockFeatures.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/UnlockFeatures.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -19,7 +19,7 @@
 #define _MGUNLOCKFEATURES_H
 
 
-/// \defgroup MgUnlockFeatures
+/// \defgroup MgUnlockFeatures MgUnlockFeatures
 /// \ingroup Feature_Service_classes
 /// \{
 

Modified: trunk/MgDev/Common/PlatformBase/Services/UpdateFeatures.h
===================================================================
--- trunk/MgDev/Common/PlatformBase/Services/UpdateFeatures.h	2007-02-12 21:17:49 UTC (rev 1106)
+++ trunk/MgDev/Common/PlatformBase/Services/UpdateFeatures.h	2007-02-13 00:17:46 UTC (rev 1107)
@@ -18,7 +18,7 @@
 #ifndef _MGUPDATEFEATURES_H
 #define _MGUPDATEFEATURES_H
 
-/// \defgroup MgUpdateFeatures
+/// \defgroup MgUpdateFeatures MgUpdateFeatures
 /// \ingroup Feature_Service_classes
 /// \{
 



More information about the mapguide-commits mailing list