home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / c / fli106c / examples / yesno.h < prev   
Encoding:
C/C++ Source or Header  |  1992-01-25  |  566 b   |  30 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.01
  4. // Copyright (C) 1990, 1991
  5. // Software Dimensions
  6. //
  7. // Dialog Development System
  8. //
  9.  
  10. class YesNo
  11. {
  12. private:
  13.  
  14.   int AllocationError;              // An allocation error occured
  15.   int NumberOfInfoLines;            // Number of lines in this YesNo
  16.  
  17.   char *TitleOfYesNo;             // Title of the YesNo
  18.   char **MessageLineStorage;        // Storage for all YesNo lines
  19.  
  20. public:
  21.  
  22.   YesNo();
  23.   ~YesNo();
  24.  
  25.   int UseYesNo();
  26.   void Title(char *);
  27.   YesNo& operator+ (char *);
  28. };
  29.  
  30.