Wavelet and Image class library  1.3.2
RowVector.hh
Go to the documentation of this file.
00001 /*
00002  * class RowVector
00003  *
00004  * $Date$
00005  * $Revision$
00006  *
00007  */
00008 
00009 #ifndef ROW_VECTOR_HH__
00010 #define ROW_VECTOR_HH__
00011 
00012 #include "WImage/ImageVector.hh"
00013 
00021 class 
00022 RowVector: public ImageVector
00023 {
00024 public:
00025   
00028   RowVector (ImageArray<coeff> *ar) : ImageVector (ar) { go (0); }
00030   virtual ~RowVector (void) { } 
00031 
00037   virtual void go (int root);
00044   virtual coeff at (int pos);
00051   virtual void to (int pos, coeff val);
00054   virtual int size (void);
00057   virtual void update (void);
00058 
00059 private:
00061   int m_rbase;
00062 }; /* class RowVector */
00063 
00066 #endif /* ROW_VECTOR_HH__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines