Changeset 318 in flair-src for trunk/lib/FlairCore/src/MatrixDescriptor.h
- Timestamp:
- 07/03/19 17:05:33 (4 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/MatrixDescriptor.h
r317 r318 4 4 // %flair:license} 5 5 /*! 6 * \file cvmatrix_descriptor.h7 * \brief Class describing cvmatrix elements, for log and graphs purpose6 * \file MatrixDescriptor.h 7 * \brief Class describing matrix elements, for log and graphs purpose 8 8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253 9 9 * \date 2014/02/05 … … 11 11 */ 12 12 13 #ifndef CVMATRIX_DESCRIPTOR_H14 #define CVMATRIX_DESCRIPTOR_H13 #ifndef MATRIXDESCRIPTOR_H 14 #define MATRIXDESCRIPTOR_H 15 15 16 16 #include <string> … … 19 19 namespace core { 20 20 21 /*! \class cvmatrix_descriptor21 /*! \class MatrixDescriptor 22 22 * 23 * \brief Class describing cvmatrix elements, for log and graphs purpose23 * \brief Class describing matrix elements, for log and graphs purpose 24 24 * 25 25 * This class allows to give a name to matrix elements. These names 26 26 * will be used in graphs and logs. 27 27 */ 28 class cvmatrix_descriptor {28 class MatrixDescriptor { 29 29 public: 30 30 /*! … … 36 36 * \param cols matrix cols 37 37 */ 38 cvmatrix_descriptor(uint32_t rows, uint32_t cols);38 MatrixDescriptor(uint32_t rows, uint32_t cols); 39 39 40 40 /*! … … 42 42 * 43 43 */ 44 ~ cvmatrix_descriptor();44 ~MatrixDescriptor(); 45 45 46 46 /*! … … 85 85 } // end namespace flair 86 86 87 #endif // CVMATRIX_DESCRIPTOR_H87 #endif // MATRIXDESCRIPTOR_H
Note:
See TracChangeset
for help on using the changeset viewer.