home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Demos / Bowers Development / AppMaker 2.1.sit / AppMaker 2.1 / Examples / PowerPlant / AMReminder / DDocData.cp / DDocData.cp
Encoding:
Text File  |  1997-07-02  |  334 b   |  26 lines  |  [TEXT/CWIE]

  1. // DDocData.cp -- data container class for AMReminder
  2.  
  3. #include "DDocData.h"
  4.  
  5. //----------
  6. DDocData::DDocData ()
  7. {
  8.     mReminderChoice = 0;
  9. }
  10.  
  11. //----------
  12. DDocData::~DDocData ()
  13. {
  14. }
  15.  
  16. //----------
  17. // functions to access the data members
  18.  
  19. //----------
  20. void    DDocData::setReminderChoice (
  21.     SInt16        inValue)
  22. {
  23.     mReminderChoice = inValue;
  24. }
  25.  
  26.