[fdo-commits] r2526 - trunk/Fdo/Unmanaged/Inc/Fdo/Expression

svn_fdo at osgeo.org svn_fdo at osgeo.org
Thu Feb 15 14:56:00 EST 2007


Author: gregboone
Date: 2007-02-15 14:56:00 -0500 (Thu, 15 Feb 2007)
New Revision: 2526

Modified:
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BLOBValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryExpression.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryOperations.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BooleanValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ByteValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/CLOBValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ComputedIdentifier.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValueCollection.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DateTimeValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DecimalValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DoubleValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionException.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionType.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Function.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/GeometryValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Identifier.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int16Value.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int32Value.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int64Value.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Parameter.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/SingleValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/StringValue.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryExpression.h
   trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryOperations.h
Log:
FDO4: API - Update API documentation included in the FDO header files

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BLOBValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BLOBValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BLOBValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -61,8 +61,8 @@
     FDO_API FdoString* ToString();
 
 
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoBLOBValue with a value of null.
     /// \return
@@ -88,9 +88,9 @@
     virtual ~FdoBLOBValue();
 
     virtual void Dispose();
+/// \endcond
 
 };
-/// \endcond
 #endif
 
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryExpression.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryExpression.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryExpression.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -33,8 +33,8 @@
 /// and divide.
 class FdoBinaryExpression : public FdoExpression
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an FdoBinaryExpression.
     FdoBinaryExpression();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryOperations.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryOperations.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BinaryOperations.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -23,29 +23,22 @@
 #pragma once
 #endif
 
+/// \ingroup (enums)
 /// \brief
 /// The FdoBinaryOperations enumeration lists the binary expression operations
 /// available.
-/// <param name="FdoBinaryOperations_Add">
-/// Add the two expressions or concatenate two string expressions
-/// </param>
-/// <param name="FdoBinaryOperations_Subtract">
-/// Subtract the two expressions
-/// </param>
-/// <param name="FdoBinaryOperations_Multiply">
-/// Multiply the two expressions
-/// </param>
-/// <param name="FdoBinaryOperations_Divide">
-/// Divide the two expressions
-/// </param>
 enum FdoBinaryOperations
 {
+    /// Add the two expressions or concatenate two string expressions
     FdoBinaryOperations_Add,
 
+    /// Subtract the two expressions
     FdoBinaryOperations_Subtract,
 
+    /// Multiply the two expressions
     FdoBinaryOperations_Multiply,
 
+    /// Divide the two expressions
     FdoBinaryOperations_Divide
 };
 #endif

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BooleanValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BooleanValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/BooleanValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,8 +31,8 @@
 /// value.
 class FdoBooleanValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoBooleanValue with a
     /// value of null.

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ByteValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ByteValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ByteValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -32,8 +32,8 @@
 /// byte value.
 class FdoByteValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoByteValue with a value of null.
     /// \return
@@ -136,14 +136,14 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     // See FdoDataValue::DoCompare()
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
-/// \cond DOXYGEN-IGNORE
     FdoByte m_data;
+/// \endcond
 };
-/// \endcond
 #endif
 
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/CLOBValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/CLOBValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/CLOBValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -32,8 +32,8 @@
 /// CLOB value.
 class FdoCLOBValue : public FdoLOBValue 
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoCLOBValue with a value of null.
     /// 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ComputedIdentifier.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ComputedIdentifier.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ComputedIdentifier.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -45,8 +45,8 @@
 /// 
 class FdoComputedIdentifier : public FdoIdentifier
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an identifier.
     FdoComputedIdentifier();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -32,6 +32,7 @@
 /// value such as a string or a number.
 class FdoDataValue : public FdoLiteralValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoInternalDataValue;
     friend class FdoByteValue;
     friend class FdoDecimalValue;
@@ -41,7 +42,6 @@
     friend class FdoInt64Value;
     friend class FdoSingleValue;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     ///  Constructs a default instance of an FdoDataValue with data type string and a
     /// value of null.
@@ -223,6 +223,7 @@
     // Get the value as an XML format string.
     FdoString* GetXmlValue();
 
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Compares this data value with another data value
@@ -269,12 +270,12 @@
     /// 
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
-/// \cond DOXYGEN-IGNORE
     bool        m_isNull;
     FdoStringP  m_XmlValue; // Manages GetXmlValue return string when datatype is datetime.
+/// \endcond
 };
-/// \endcond
 
+/// \ingroup (typedefs)
 /// \brief
 /// FdoDataValueP is a FdoPtr on FdoDataValue, provided for convenience.
 typedef FdoPtr<FdoDataValue> FdoDataValueP;

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValueCollection.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValueCollection.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DataValueCollection.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -55,6 +55,7 @@
     FDO_API static FdoDataValueCollection* Create();
 };
 
+/// \ingroup (typedefs)
 /// \brief
 /// FdoDataValueCollectionP is a FdoPtr on FdoDataValueCollection, provided for convenience.
 typedef FdoPtr<FdoDataValueCollection> FdoDataValueCollectionP;

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DateTimeValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DateTimeValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DateTimeValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,8 +31,8 @@
 /// The FdoDateTimeValue class derives from FdoDataValue and represents a date or time.
 class FdoDateTimeValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-// // \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoDateTimeValue with a
     /// value of null.
@@ -63,7 +63,7 @@
     virtual ~FdoDateTimeValue();
 
     virtual void Dispose();
-// // \endcond
+    /// \endcond
 
 public:
     /// \brief
@@ -143,14 +143,14 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     // See FdoDataValue::DoCompare()
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
-/// \cond DOXYGEN-IGNORE
     FdoDateTime m_data;
+/// \endcond
 };
-/// \endcond
 #endif
 
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DecimalValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DecimalValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DecimalValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,13 +31,13 @@
 /// The FdoDecimalValue class derives from FdoDataValue and represents a decimal value.
 class FdoDecimalValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoByteValue;
     friend class FdoInt16Value;
     friend class FdoInt32Value;
     friend class FdoInt64Value;
     friend class FdoSingleValue;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoDecimalValue with a
     /// value of null.
@@ -145,8 +145,7 @@
         return m_data;
     }
 
-
-
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Constructs an instance of an FdoDecimalValue from another FdoDataValue.
@@ -181,10 +180,9 @@
     // See FdoDataValue::DoCompare()
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
-/// \cond DOXYGEN-IGNORE
     double  m_data;
-};
 /// \endcond
+};
 #endif
 
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DoubleValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DoubleValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/DoubleValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,13 +31,13 @@
 /// The FdoDoubleValue class derives from FdoDataValue and represents a double-precision floating point number.
 class FdoDoubleValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoByteValue;
     friend class FdoInt16Value;
     friend class FdoInt32Value;
     friend class FdoInt64Value;
     friend class FdoSingleValue;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoDoubleValue with a
     /// value of null.
@@ -149,6 +149,7 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Constructs an instance of an FdoDoubleValue from another FdoDataValue.
@@ -185,10 +186,9 @@
     // See FdoDataValue::DoCompare()
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
-/// \cond DOXYGEN-IGNORE
     double  m_data;
+/// \endcond
 };
-/// \endcond
 #endif
 
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionException.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionException.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionException.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,8 +31,8 @@
 /// environment specific.
 class FdoExpressionException : public FdoException
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an FdoExpressionException.
     FdoExpressionException();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionType.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionType.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/ExpressionType.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -23,24 +23,19 @@
 #pragma once
 #endif
 
+/// \ingroup (enums)
 /// \brief
 /// The FdoExpressionType enumeration defines the expression types available. This
 /// enumeration is used in the capabilities metadata.
-/// <param name="FdoExpressionType_Basic">
-/// Basic arithmetic expressions e.g.: +, -, *, /, negate, and string concatenation.
-/// </param>
-/// <param name="FdoExpressionType_Function">
-/// Function evaluations
-/// </param>
-/// <param name="FdoExpressionType_Parameter">
-/// Parameter substitutions
-/// </param>
 enum FdoExpressionType
 {
+    /// Basic arithmetic expressions e.g.: +, -, *, /, negate, and string concatenation.
     FdoExpressionType_Basic,
 
+    /// Function evaluations
     FdoExpressionType_Function,
 
+    /// Parameter substitutions
     FdoExpressionType_Parameter
 
 };

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Function.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Function.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Function.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -33,8 +33,8 @@
 /// be passed to it.
 class FdoFunction : public FdoExpression
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an FdoFunction.
     FdoFunction();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/GeometryValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/GeometryValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/GeometryValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -30,8 +30,8 @@
 /// The FdoGeometryValue class derives from FdoLiteralValue and represents a geometric value.
 class FdoGeometryValue : public FdoLiteralValue
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an FdoGeometryValue with a value of null.
     FdoGeometryValue();
 
@@ -122,8 +122,10 @@
     /// 
     FDO_API FdoString* ToString();
 
+/// \cond DOXYGEN-IGNORE
 protected:
     FdoByteArray*    m_geometry;
+/// \endcond
 };
 #endif
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Identifier.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Identifier.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Identifier.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -37,8 +37,8 @@
 /// property name "Address.City".
 class FdoIdentifier : public FdoExpression
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an identifier.
     FdoIdentifier();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int16Value.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int16Value.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int16Value.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,9 +31,9 @@
 /// The FdoInt16Value class derives from FdoDataValue and represents a 16-bit signed integer value.
 class FdoInt16Value : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoByteValue;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoInt16Value with a
     /// value of null.
@@ -141,6 +141,7 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Constructs an instance of an FdoInt16Value from another FdoDataValue.
@@ -173,6 +174,7 @@
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
     FdoInt16    m_data;
+/// \endcond
 };
 #endif
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int32Value.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int32Value.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int32Value.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,10 +31,10 @@
 /// The FdoInt32Value class derives from FdoDataValue and represents a 32-bit signed integer value.
 class FdoInt32Value : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoByteValue;
     friend class FdoInt16Value;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoInt32Value with a
     /// value of null.
@@ -141,6 +141,7 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Constructs an instance of an FdoInt32Value from another FdoDataValue.
@@ -174,6 +175,7 @@
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
     FdoInt32    m_data;
+/// \endcond
 };
 #endif
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int64Value.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int64Value.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Int64Value.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,11 +31,11 @@
 /// The FdoInt64Value class derives from FdoDataValue and represents a 64-bit signed integer value.
 class FdoInt64Value : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoByteValue;
     friend class FdoInt16Value;
     friend class FdoInt32Value;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoInt64Value with a
     /// value of null.
@@ -140,6 +140,7 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Constructs an instance of an FdoInt64Value from another FdoDataValue.
@@ -174,6 +175,7 @@
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
     FdoInt64    m_data;
+/// \endcond
 };
 #endif
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Parameter.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Parameter.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/Parameter.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -36,8 +36,8 @@
 /// FdoICommand interface and FdoParameterValue.
 class FdoParameter : public FdoValueExpression
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of a parameter.
     FdoParameter();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/SingleValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/SingleValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/SingleValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,12 +31,12 @@
 /// The FdoSingleValue class derives from FdoDataValue and represents a single precision floating point number.
 class FdoSingleValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
     friend class FdoByteValue;
     friend class FdoInt16Value;
     friend class FdoInt32Value;
     friend class FdoInt64Value;
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoSingleValue with a
     /// value of null.
@@ -141,6 +141,7 @@
         return m_data;
     }
 
+/// \cond DOXYGEN-IGNORE
 protected:
     /// \brief
     /// Constructs an instance of an FdoSingleValue from another FdoDataValue.
@@ -176,6 +177,7 @@
     virtual FdoCompareType DoCompare( FdoDataValue* other );
 
     float   m_data;
+/// \endcond
 };
 #endif
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/StringValue.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/StringValue.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/StringValue.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -31,8 +31,8 @@
 /// The FdoStringValue class derives from FdoDataValue and represents a literal string.
 class FdoStringValue : public FdoDataValue
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// \brief
     /// Constructs a default instance of an FdoStringValue with a
     /// value of null.

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryExpression.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryExpression.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryExpression.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -32,8 +32,8 @@
 /// arithmetic expressions.
 class FdoUnaryExpression : public FdoExpression
 {
+/// \cond DOXYGEN-IGNORE
 protected:
-/// \cond DOXYGEN-IGNORE
     /// Constructs a default instance of an FdoUnaryExpression.
     FdoUnaryExpression();
 

Modified: trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryOperations.h
===================================================================
--- trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryOperations.h	2007-02-15 19:45:13 UTC (rev 2525)
+++ trunk/Fdo/Unmanaged/Inc/Fdo/Expression/UnaryOperations.h	2007-02-15 19:56:00 UTC (rev 2526)
@@ -23,13 +23,13 @@
 #pragma once
 #endif
 
+
+/// \ingroup (enums)
 /// \brief
 /// The FdoUnaryOperations enumeration lists the unary expression operations available.
-/// <param name="FdoUnaryOperations_Negate">
-/// Negate the expression
-/// </param>
 enum FdoUnaryOperations
 {
+    /// Negate the expression
     FdoUnaryOperations_Negate
 
 };



More information about the fdo-commits mailing list