home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / visbuild / rapsheet / suscnrmf.hpv < prev    next >
Encoding:
Text File  |  1996-02-19  |  3.6 KB  |  60 lines

  1. #ifndef _ISUSCNRMF_
  2. #define _ISUSCNRMF_
  3. /******************************************************************************
  4. * .FILE:        suscnrmf.hpp                                                  *
  5. *                                                                             *
  6. * .DESCRIPTION: Additional header file for the class ISuspectCnrView          *
  7. *                                                                             *
  8. * .CLASSES:                                                                   *
  9. *                                                                             *
  10. * .COPYRIGHT:                                                                 *
  11. *    Licensed Material - Program-Property of IBM                              *
  12. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  13. *                                                                             *
  14. * .DISCLAIMER:                                                                *
  15. *   The following [enclosed] code is sample code created by IBM               *
  16. *   Corporation.  This sample code is not part of any standard IBM product    *
  17. *   and is provided to you solely for the purpose of assisting you in the     *
  18. *   development of your applications.  The code is provided 'AS IS',          *
  19. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  20. *   arising out of your use of the sample code, even if they have been        *
  21. *   advised of the possibility of such damages.                               *
  22. *                                                                             *
  23. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  24. *                                                                             *
  25. ******************************************************************************/
  26.  
  27. public:
  28. //***************************************************************************
  29. // Additional events for ISuspectCnrView
  30. //***************************************************************************
  31.    static INotificationId suspectToOpenId;
  32.  
  33. //***************************************************************************
  34. // Additional member functions for ISuspectCnrView
  35. //***************************************************************************
  36. /*------------------------------------------------------------------------------
  37.  | ISuspectCnrView openTargetSuspects(IVSequence &)
  38.  -----------------------------------------------------------------------------*/
  39.    virtual ISuspectCnrView & openSuspects(IVSequence<ISuspect*> *aSuspectList);
  40.  
  41. /*------------------------------------------------------------------------------
  42.  | ISuspectCnrView selectAllSuspects(IContainerControl *, Boolean)
  43.  -----------------------------------------------------------------------------*/
  44.    virtual ISuspectCnrView & selectAllSuspects(IContainerControl *,
  45.                                                Boolean select=true);
  46.  
  47. //***************************************************************************
  48. // Access member functions for additional data members for ISuspectCnrView
  49. //***************************************************************************
  50.    virtual ISuspect * suspectToOpen() const;
  51.    virtual ISuspectCnrView & setSuspectToOpen(ISuspect * aSuspect);
  52.  
  53. private:
  54. //***************************************************************************
  55. // Additional data members for ISuspectCnrView
  56. //***************************************************************************
  57.    ISuspect * iSuspectToOpen;
  58.  
  59. #endif
  60.