LicenseWindow.h 345 B

12345678910111213141516171819202122
  1. #ifndef __LICENSEWINDOW
  2. #define __LICENSEWINDOW
  3. #include <FL/Fl.H>
  4. #include <FL/Fl_Window.H>
  5. #include <FL/Fl_Text_Display.H>
  6. #include <FL/Fl_Text_Buffer.H>
  7. class LicenseWindow : public Fl_Window {
  8. public:
  9. LicenseWindow(void);
  10. ~LicenseWindow(void);
  11. private:
  12. Fl_Text_Buffer* buf;
  13. Fl_Text_Display* lic;
  14. };
  15. #endif