home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / TCL / AMReminder / Add.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-19  |  507 b   |  24 lines  |  [TEXT/KAHL]

  1. /* Add.h -- Modal dialog */
  2. /* Created 01/01/95 12:01 PM by AppMaker */
  3.  
  4. #pragma once
  5.  
  6. #include "zAdd.h"
  7.  
  8. /*----------*/
  9. class CAdd : public ZAdd {
  10. public:
  11.     virtual    void    IAdd    (CDirectorOwner        *aSupervisor);
  12.     void    UpdateMenus        (void);                            // is override
  13.     void     DoCommand        (long            theCommand);    // is override
  14.  
  15. protected:
  16.     void    ProviderChanged    (CCollaborator    *aProvider,
  17.                              long            reason,
  18.                              void*            info);            // is override
  19.  
  20. }; /* CAdd */
  21.  
  22. /*----------*/
  23. void    DoAdd    (CDirectorOwner        *aSupervisor);
  24.