Show
Ignore:
Timestamp:
10/15/09 00:04:30 (15 years ago)
Author:
smidl
Message:

doc - doxygen warnings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/estim/arx.h

    r649 r660  
    124124        //!\name Access attributes 
    125125        //!@{ 
    126         const egiw& posterior() const { 
     126                //! return correctly typed posterior (covariant return) 
     127                const egiw& posterior() const { 
    127128                return est; 
    128129        } 
     
    189190        public: 
    190191                ARXfrg():ARX(){}; 
     192                //! copy constructor 
    191193                ARXfrg(const ARXfrg &A0):ARX(A0){}; 
    192194                ARXfrg* _copy_() const {ARXfrg *A = new ARXfrg(*this); return A;}