home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / visbuild / oasearch / skill.hpv < prev    next >
Encoding:
Text File  |  1996-02-20  |  2.6 KB  |  51 lines

  1. /******************************************************************************
  2. * .FILE:        skill.hpv                                                     *
  3. *                                                                             *
  4. * .DESCRIPTION: Implementation of additional member functions for the class   *
  5. *               OASkill (header file)                                         *
  6. *                                                                             *
  7. * .CLASSES:                                                                   *
  8. *                                                                             *
  9. * .COPYRIGHT:                                                                 *
  10. *    Licensed Material - Program-Property of IBM                              *
  11. *    (C) Copyright IBM Corp. 1992, 1995, 1996 - All Rights Reserved           *
  12. *                                                                             *
  13. * .DISCLAIMER:                                                                *
  14. *   The following [enclosed] code is sample code created by IBM               *
  15. *   Corporation.  This sample code is not part of any standard IBM product    *
  16. *   and is provided to you solely for the purpose of assisting you in the     *
  17. *   development of your applications.  The code is provided 'AS IS',          *
  18. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  19. *   arising out of your use of the sample code, even if they have been        *
  20. *   advised of the possibility of such damages.                               *
  21. *                                                                             *
  22. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  23. *                                                                             *
  24. ******************************************************************************/
  25. public:
  26.   IString skillName() const;
  27.   OASkill & setSkillName(const IString & aSkillName);
  28.   IString contractorID() const;
  29.   OASkill & setContractorID(const IString & aContractorID);
  30.   IString yearsExp() const;
  31.   OASkill & setYearsExp(const long aValue);
  32.   OASkill & setYearsExp(const IString & aYearsExp);
  33.   IString key() const;
  34.   OASkill & setKey(const IString & aKey);
  35.  
  36. // Added copy constructor
  37.  
  38.   OASkill(const OASkill & aSkill);
  39.  
  40.   static INotificationId skillNameId;
  41.   static INotificationId contractorIDId;
  42.   static INotificationId yearsExpId;
  43.   static INotificationId keyId;
  44.  
  45. private:
  46.   unsigned long iStartingResourceId;
  47.   IString iSkillName;
  48.   IString iContractorID;
  49.   IString iYearsExp;
  50.   IString iKey;
  51.