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

  1. /*
  2.     WGridDV.hpp
  3.  
  4.     NOTE: This file is a generated file.
  5.           Do not modify it by hand!
  6. */
  7.  
  8. #ifndef WGridDV_hpp_included
  9. #define WGridDV_hpp_included
  10.  
  11.  
  12. // Declarations added here will be included at the top of the .HPP file
  13.  
  14. class WCMCLASS WGridDataValue : public WObject
  15. {
  16.     public:
  17.     public:
  18.         // add your public instance data here
  19.     private:
  20.         // add your private instance data here
  21.         WULong              _column;
  22.         WString             _text;
  23.         WBool               _readOnly;
  24.         WBool               _empty;
  25.         void *              _userData;
  26.     protected:
  27.         // add your protected instance data here
  28.     //
  29.     // Constructors and Destructors
  30.     //
  31.     public:
  32.         WGridDataValue();
  33.     public:
  34.         WGridDataValue( const WGridDataValue & dataValue );
  35.     public:
  36.         WGridDataValue( const WString & text );
  37.     public:
  38.         ~WGridDataValue();
  39.     //
  40.     // Properties
  41.     //
  42.     public:
  43.         WULong GetColumnNumber() const;
  44.     public:
  45.         WBool SetColumnNumber( WULong columnNumber );
  46.     public:
  47.         WBool GetReadOnly() const;
  48.     public:
  49.         WBool SetReadOnly( WBool readOnly );
  50.     public:
  51.         WBool GetEmpty() const;
  52.     public:
  53.         WBool SetEmpty( WBool empty );
  54.     public:
  55.         WString GetText() const;
  56.     public:
  57.         WBool SetText( const WString & text );
  58.     public:
  59.         void * GetUserData() const;
  60.     public:
  61.         WBool SetUserData( void * userData );
  62.     //
  63.     // Methods
  64.     //
  65.     public:
  66.         WBool Create( const WGridDataValue & dataValue );
  67.     //
  68.     // Operators
  69.     //
  70.     public:
  71.         int operator!=( const WGridDataValue & value ) const;
  72.     public:
  73.         int operator==( const WGridDataValue & value ) const;
  74.     public:
  75.         WGridDataValue & operator =( const WGridDataValue & dataValue );
  76. };
  77.  
  78. #endif
  79.