home *** CD-ROM | disk | FTP | other *** search
- //
- // The Fusion Library Interface for DOS
- // Version 1.01
- // Copyright (C) 1990, 1991
- // Software Dimensions
- //
- // Dialog Development System
- //
-
- class YesNo
- {
- private:
-
- int AllocationError; // An allocation error occured
- int NumberOfInfoLines; // Number of lines in this YesNo
-
- char *TitleOfYesNo; // Title of the YesNo
- char **MessageLineStorage; // Storage for all YesNo lines
-
- public:
-
- YesNo();
- ~YesNo();
-
- int UseYesNo();
- void Title(char *);
- YesNo& operator+ (char *);
- };
-
-