home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / strgen.zip / customer.hpv < prev    next >
Text File  |  1995-11-02  |  686b  |  25 lines

  1.  
  2.  
  3. // Feature source code generation begins here...
  4. public:
  5.   virtual IString Name() const;
  6.   virtual Customer& setName(const IString& aName);
  7.   virtual IString Street() const;
  8.   virtual Customer& setStreet(const IString& aStreet);
  9.   virtual IString City() const;
  10.   virtual Customer& setCity(const IString& aCity);
  11.   virtual IString Phone() const;
  12.   virtual Customer& setPhone(const IString& aPhone);
  13.  
  14.   static INotificationId NameId;
  15.   static INotificationId StreetId;
  16.   static INotificationId CityId;
  17.   static INotificationId PhoneId;
  18.  
  19. private:
  20.   IString iName;
  21.   IString iStreet;
  22.   IString iCity;
  23.   IString iPhone;
  24. // Feature source code generation ends here.
  25.