home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / hpp.z / wgriddr.hpp < prev    next >
C/C++ Source or Header  |  1996-06-28  |  2KB  |  66 lines

  1. /*
  2.     WGridDR.hpp
  3.  
  4.     NOTE: This file is a generated file.
  5.           Do not modify it by hand!
  6. */
  7.  
  8. #ifndef WGridDR_hpp_included
  9. #define WGridDR_hpp_included
  10.  
  11.  
  12. // Declarations added here will be included at the top of the .HPP file
  13. #include "WGridDV.hpp"
  14.  
  15. extern template WArrayReference<WGridDataValue>;
  16. extern template WArray<WGridDataValue>;
  17.  
  18. typedef WArray<WGridDataValue> WGridDataValueArray;
  19.  
  20. class WCMCLASS WGridDataRow : public WObject
  21. {
  22.     public:
  23.     public:
  24.         // add your public instance data here
  25.     private:
  26.         // add your private instance data here
  27.         WGridDataRow *            _next;
  28.         WGridDataRow *            _prev;
  29.         WULong                    _row;
  30.         WGridDataValueArray       _values;
  31.     //
  32.     // Constructors and Destructors
  33.     //
  34.     public:
  35.         WGridDataRow();
  36.     public:
  37.         ~WGridDataRow();
  38.     //
  39.     // Properties
  40.     //
  41.     public:
  42.         WGridDataRow * GetNextRow() const;
  43.     public:
  44.         WGridDataRow * GetPreviousRow() const;
  45.     public:
  46.         WULong GetRowNumber() const;
  47.     public:
  48.         WBool SetRowNumber( WULong rowNumber );
  49.     //
  50.     // Item Properties
  51.     //
  52.     public:
  53.         WGridDataValue GetValue( WULong columnNumber );
  54.     public:
  55.         WBool SetValue( WULong columnNumber, const WGridDataValue & value );
  56.     //
  57.     // Methods
  58.     //
  59.     public:
  60.         WBool AppendRow( WGridDataRow * row );
  61.     public:
  62.         WBool Delete();
  63. };
  64.  
  65. #endif
  66.