home *** CD-ROM | disk | FTP | other *** search
- /*
- WGridDR.hpp
-
- NOTE: This file is a generated file.
- Do not modify it by hand!
- */
-
- #ifndef WGridDR_hpp_included
- #define WGridDR_hpp_included
-
-
- // Declarations added here will be included at the top of the .HPP file
- #include "WGridDV.hpp"
-
- extern template WArrayReference<WGridDataValue>;
- extern template WArray<WGridDataValue>;
-
- typedef WArray<WGridDataValue> WGridDataValueArray;
-
- class WCMCLASS WGridDataRow : public WObject
- {
- public:
- public:
- // add your public instance data here
- private:
- // add your private instance data here
- WGridDataRow * _next;
- WGridDataRow * _prev;
- WULong _row;
- WGridDataValueArray _values;
- //
- // Constructors and Destructors
- //
- public:
- WGridDataRow();
- public:
- ~WGridDataRow();
- //
- // Properties
- //
- public:
- WGridDataRow * GetNextRow() const;
- public:
- WGridDataRow * GetPreviousRow() const;
- public:
- WULong GetRowNumber() const;
- public:
- WBool SetRowNumber( WULong rowNumber );
- //
- // Item Properties
- //
- public:
- WGridDataValue GetValue( WULong columnNumber );
- public:
- WBool SetValue( WULong columnNumber, const WGridDataValue & value );
- //
- // Methods
- //
- public:
- WBool AppendRow( WGridDataRow * row );
- public:
- WBool Delete();
- };
-
- #endif
-