Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63514 - branches/ublas-doxygen
From: david.bellot_at_[hidden]
Date: 2010-07-02 14:56:17


Author: david.bellot
Date: 2010-07-02 03:48:04 EDT (Fri, 02 Jul 2010)
New Revision: 63514
URL: http://svn.boost.org/trac/boost/changeset/63514

Log:
all classes documented. End of phase 1

Text files modified:
   branches/ublas-doxygen/expression_types.hpp | 50 +++++++++++++++++++++++----------------
   1 files changed, 29 insertions(+), 21 deletions(-)

Modified: branches/ublas-doxygen/expression_types.hpp
==============================================================================
--- branches/ublas-doxygen/expression_types.hpp (original)
+++ branches/ublas-doxygen/expression_types.hpp 2010-07-02 03:48:04 EDT (Fri, 02 Jul 2010)
@@ -47,7 +47,7 @@
     };
 
 
- /** \bried Base class for Scalar Expression models
+ /** \brief Base class for Scalar Expression models
      *
      * It does not model the Scalar Expression concept but all derived types should.
      * The class defines a common base type and some common interface for all statically
@@ -173,11 +173,13 @@
     };
 
 
- // Base class for Vector Expression models -
- // it does not model the Vector Expression concept but all derived types should.
- // The class defines a common base type and some common interface for all
- // statically derived Vector Expression classes
- // We implement the casts to the statically derived type.
+ /** \brief Base class for Vector Expression models
+ *
+ * it does not model the Vector Expression concept but all derived types should.
+ * The class defines a common base type and some common interface for all
+ * statically derived Vector Expression classes.
+ * We implement the casts to the statically derived type.
+ */
     template<class E>
     class vector_expression:
         public ublas_expression<E> {
@@ -265,11 +267,13 @@
 #endif
     };
 
- // Base class for Vector container models -
- // it does not model the Vector concept but all derived types should.
- // The class defines a common base type and some common interface for all
- // statically derived Vector classes
- // We implement the casts to the statically derived type.
+ /** \brief Base class for Vector container models
+ *
+ * it does not model the Vector concept but all derived types should.
+ * The class defines a common base type and some common interface for all
+ * statically derived Vector classes
+ * We implement the casts to the statically derived type.
+ */
     template<class C>
     class vector_container:
         public vector_expression<C> {
@@ -293,11 +297,13 @@
     };
 
 
- // Base class for Matrix Expression models -
- // it does not model the Matrix Expression concept but all derived types should.
- // The class defines a common base type and some common interface for all
- // statically derived Matrix Expression classes
- // We implement the casts to the statically derived type.
+ /** \brief Base class for Matrix Expression models
+ *
+ * it does not model the Matrix Expression concept but all derived types should.
+ * The class defines a common base type and some common interface for all
+ * statically derived Matrix Expression classes
+ * We implement the casts to the statically derived type.
+ */
     template<class E>
     class matrix_expression:
         public ublas_expression<E> {
@@ -468,11 +474,13 @@
     }
 #endif
 
- // Base class for Matrix container models -
- // it does not model the Matrix concept but all derived types should.
- // The class defines a common base type and some common interface for all
- // statically derived Matrix classes
- // We implement the casts to the statically derived type.
+ /** \brief Base class for Matrix container models
+ *
+ * it does not model the Matrix concept but all derived types should.
+ * The class defines a common base type and some common interface for all
+ * statically derived Matrix classes
+ * We implement the casts to the statically derived type.
+ */
     template<class C>
     class matrix_container:
         public matrix_expression<C> {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk